views:

23

answers:

2

I want to take back up of registry of the current network settings like IP,Subnet,DNS and all that stuff, in windows xp. How can i do that? Please help.

+1  A: 

Either use the FreeIPSwitcher or (using your chosen language - not specified) backup HKLM\SYSTEM\CurrentControlSet\services\Tcpip\Parameters\Interfaces

Metalshark
+1  A: 

For Windows XP clients and higher, the netsh command has access to all your nitty-gritty networking configuration. Rather than fool with Registry stuff (which may be incomplete, since the network config is in many places), you might do better by using the netsh dump > ipsettings.bak command to save a configuration script. If you need to restore the settings due to bad changes, simply run netsh exec ipsettings.bak and you're back in business.

ewall
fantastic.... works great
Soham Dasgupta