Quickly fill in IP parameters with tricks

  

1 For notebook users, the biggest headache is that every time you use your home and office to reconfigure your network settings, Netsh tools can be used to quickly switch between different network settings.

(1) In the company, first modify the notebook's network settings, and then type in the "command prompt":

netsh -c interface dump > c:\\configs\\officeinterface .txt

This saves the office's network settings to the C:\\Configs\\Officeinterface.txt file.

(2) After returning home, modify the notebook's network settings again, and then type in the "Command prompt":

netsh -c interface dump > c:\\configs\\homeinterface .txt

This saves your home network settings to the c:\\configs\\homeinterface.txt file.

(3) When adding to the company, just type in the "command prompt":

netsh -fc:\\configs\\officeinterface.txt

The network settings of the notebook become suitable for the company's settings. When you get home, just type:

netsh -f c:\\configs\\homeinterface.txt

Then change the network settings in your home.

Copyright © Windows knowledge All Rights Reserved