Showing posts with label teaming. Show all posts
Showing posts with label teaming. Show all posts

Wednesday, September 14, 2016

Create Teaming windows server intel network card

Create Teaming windows server intel network card


Here is  a bash script to create Teaming with intel network card, on windows Server





First you have to install Intel PROSet for Windows 

Then create a bat file and put on the flowing script.


@echo off
REM ###########################################################################
REM Script to create Teaming for Intel Network card
REM Version : V1
REM ###########################################################################


REM Go on INTEL folder
Cd "C:Program FilesIntelDMIXCL"
REM Enumerate Intel cards
set _scmd=PROSetCL.exe adapter_enumerate

REM Enumerate Intel cards
FOR /f "tokens=1 delims=)" %%G IN (%_scmd% ^|find "Intel") DO call :concat %%G

REM Remove addition information that we dont need
set myvar=%myvar:~0,3%


REM Create Teaming
PROSetCL.exe Team_Create %myvar% IntelTeaming AFT


REM concatenate index of intel cards
:concat
set myvar=%myvar%%1,

Available link for download

Read more »