辦公網絡和家裡的網絡不一樣 總是要換來換去
echo 設置ip 默認子網 默認網關 開始(無線網絡連接
netsh interface ip set address "無線網絡連接" static
echo 設置ip 默認子網 默認網關 結束
echo 設置主dns ip 開始
netsh interface ip set dns "本地連接" static
echo 設置主dns ip 結束
echo 設置副dns ip 開始
netsh interface ip add dns "本地連接"
echo 設置副dns ip 結束
echo 先禁用網卡
netsh interface set interface "本地連接" disable
echo 使用reg add命令修改物理地址(D
reg add HKEY_LOCAL_MACHINESYSTEMCurrentControlSetControlClass{
echo 再啟用網卡
netsh interface set interface "本地連接" enable
pause
From:http://tw.wingwit.com/Article/Common/201311/5705.html