Network Dump
I have a Notebook that I need to connect to two different networks. One is a DHCP and the other afixed IP. In Windows XP I configured the network adapter, and made a netsh dump >red1.dmp, and a red2.dmp for the different networks. I cannot get this to work in VISTA, I can create the dump file, but it will not store the network connection in the dump file. Any Ideas ???
May 21st, 2008 8:23pm

Hi, You can create script file for the IP Configuration,for example: For static IP address, open a notepad, and type the following: ------------------------------- Interface IPv4 set address name=local area connection static 192.168.1.3 255.255.255.0 192.168.1.1 Interface IPv4 set dnsserver name=local area connection static 192.168.1.11 --------------------------------And then, save the file in C drive with the file name Static.txt. After that, you can import the static IP address by using the following command: Netsh f C:\Static.txt For DHCP IP address, open a notepad, and type the following: ------------------------------- Interface IPv4 set address name=local area connection source=dhcp Interface IPv4 set dnsserver name=local area connection source=dhcp --------------------------------And then, save the file in C drive with the file name DHCP.txt. After that, you can import the static IP address by using the following command: Netsh f C:\DHCP.txt Hope it helps.
Free Windows Admin Tool Kit Click here and download it now
May 23rd, 2008 10:42am

This topic is archived. No further replies will be accepted.

Other recent topics Other recent topics