This question may be out of place on this forum but I will ask it anyways.
I am using the netsh command. I want to be able to save my network configuration and reconfigure from my saved network configuration so I use the command:
netsh -c interface dump > f:\config.txt
What I get get is a text file call config that has these contents:
# Interface IP Configuration for "Local Area Connection
set address name="Local Area Connection" source=dhcp
set dns name="Local Area Connection" source=dhcp register=BOTH
set wins name="Local Area Connection" source=dhcp
My computer is on a network and I understand these lines to be commands wen the text file config.txt is restored using the command:
netsh -f f:\config.txt
Where my question arrises is that I do not know for sure what the lines in the text file are "storing" When I look at my ipconfig I have a IP Address(which is dynamically made so I am not too concerned about it) but I have a default Gateway address, a DHCP server address, and 5 DNS server addresses. When I restore using the above command, are these address restored. In other words what exactly is stored in text file that netsh dump produces???
Any help is greatly appreciated
I am using the netsh command. I want to be able to save my network configuration and reconfigure from my saved network configuration so I use the command:
netsh -c interface dump > f:\config.txt
What I get get is a text file call config that has these contents:
# Interface IP Configuration for "Local Area Connection
set address name="Local Area Connection" source=dhcp
set dns name="Local Area Connection" source=dhcp register=BOTH
set wins name="Local Area Connection" source=dhcp
My computer is on a network and I understand these lines to be commands wen the text file config.txt is restored using the command:
netsh -f f:\config.txt
Where my question arrises is that I do not know for sure what the lines in the text file are "storing" When I look at my ipconfig I have a IP Address(which is dynamically made so I am not too concerned about it) but I have a default Gateway address, a DHCP server address, and 5 DNS server addresses. When I restore using the above command, are these address restored. In other words what exactly is stored in text file that netsh dump produces???
Any help is greatly appreciated