Switch network settings swiftly
Serdar Yegulalp
In some circumstances it's useful to be able to switch network settings -- IP address, DNS settings, etc. -- for a Windows 2000 box "on the fly," without rebooting. The netsh command in Windows can be used to do this.
Open the command-line window and create a copy of your existing network settings by using the command:
netsh -c interface dump > networksetting.txt
This will write a copy of your existing network settings to a text file named networksetting.txt. The exact name of the file is arbitrary and can be placed anywhere you wish.
If you input the command
netsh -f networksetting.txt,
you can load the settings in the networksetting.txt file, which take effect immediately.
Though this system you can create text file dumps for as many network settings as you like, and then use Windows Scripting Host or simple command-line .BAT commands to switch between them as you need to.
Serdar Yegulalp is the editor of the
Requires Free Membership to View
When you register, you’ll also receive targeted alerts from my team of editorial writers and independent industry experts with the latest news, tips, and advice to help you do your job more efficiently and effectively. Our goal is to keep you informed on the hottest topics and biggest challenges faced by Windows professionals today.
Cathleen A. Gagne, Senior Editorial DirectorWindows 2000 Power Users Newsletter.
This was first published in November 2001