Tag Archives: network
Batch adding multiple ip addresses to Windows server with netsh
Posted on 08. Aug, 2009 by config.
1
Ever wanted to add 200 ip addresses to Windows Server with one command instead of manually configure it on the interface? Netsh will help you to save time.
You can use this quick batch command in cmd:
FOR /L %I IN (2,1,254) DO netsh interface ip add address “Local Area Connection” 10.0.0.%I 255.255.255.0
This example will add ip [...]
