Windows : Add entire subnet in a batch
Adding a bunch of IP to windows through the GUI is a nightmare! Fortunately, you can enter a single command that will add them in a second. Simply open the command prompt and type the following command : FOR /L %I IN (<IP_START>,1,<IP_END>) DO netsh interface ip add address “Local Area Connection” <IP_SUBNET>.%I <IP_NETMASK> Let’s… Read More »