MultiNetworkManager....
http://www.netswitcher.com/
or:
個方法:
NetSH -f S:\IP.NCF
IP.NCF
#========================
# 連接頭配置
#========================
pushd interface
reset all
popd
# 連接頭配置結束
#========================
# Interface configuration
#========================
pushd interface ipv6
uninstall
popd
# End of interface configuration
# ----------------------------------
# ISATAP Configuration
# ----------------------------------
pushd interface ipv6 isatap
popd
# End of ISATAP configuration
# ----------------------------------
# 6to4 Configuration
# ----------------------------------
pushd interface ipv6 6to4
reset
popd
# End of 6to4 configuration
#========================
# Port Proxy configuration
#========================
pushd interface portproxy
reset
popd
# End of Port Proxy configuration
# ----------------------------------
# 連接頭 IP 配置
# ----------------------------------
pushd interface ip
# "本地連接" 的連接頭 IP 配置
set address name="本地連接" source=static addr=192.168.1.1 mask=255.255.255.0
set address name="本地連接" gateway=192.168.1.1 gwmetric=0
set dns name="本地連接" source=static addr=202.96.134.133 register=PRIMARY
add dns name="本地連接" addr=202.96.128.143 register=PRIMARY
set wins name="本地連接" source=static addr=none
popd
# 連接頭 IP 配置結束
實就兩句批次處理:
1. 儲存當前配置. 用法: dump 配置名
dump.bat
netsh -c inter dump > %1.cfg
2. 儲存當前配置. 用法: restore 配置名
restore.bat
netsh -f %1.cfg
其實netsh的本事大了, 這個應用說明不及...
沒有用第三方軟體,用的是windows自己帶的netsh,同樣又快又好用!
首選:挨個配置好自己常用的IP位址,如何DHCP的,上公司網的,上internet的,然後用netsh存成相應文本檔案如(dhcp.txt, company.txt internet.txt , 。
>netsh -c interface ip dump > c:\txtip\internet.txt
用的時候直接執行:
>netsh -f interface.txt
就可以了,不用從起電腦,也不用disable/enable網卡,而且非常快。