『壹』 如何用批處理設置internet屬性
新建文本文檔,粘貼以下內容:
WindowsRegistryEditorVersion5.00
[HKEY_CURRENT_]
"EnableAutodial"=dword:00000000
保存後改txt後綴為reg,如文件名為test.reg,則可以在當前文件夾執行以下命令:
regedit/stest.reg
或者粘貼以下內容:
regadd""/VEnableAutodial/tREG_DWORD/d0/f
保存後改txt後綴為bat,雙擊執行。
『貳』 怎樣通過批處理設置IP和計算機名
要修改地址的網路「乙太網」(非本地連接)
ip:192.168.1.22
掩碼:255.255.255.0
網關:192.168.1.1
DNS:192.168.1.1
計算機名:XXX-22
批命令內容如下:
echo off
netsh interface ipv4 set address "乙太網" static 192.168.1.22 255.255.255.0 192.168.1.1
netsh interface ipv4 set dns "乙太網" static 192.168.1.1 primary
wmic computersystem where "name='%computername%'」 call rename "XXX-22「
第一條命令設置IP地址,第二條命令設置DNS,第三條命令修改計算機名。
希望對你有用
『叄』 批處理設置電腦IP,備用IP如何設
批處理添加備用IP地址方法如下:
::"本地連接"換成電腦中網卡連接的名字,如:本地連接;本地連接2;無線網路連接等
::然後後面的IP,默認網關改稱自己需要的地址
netshinterfaceipaddaddress"本地連接"192.168.0.100255.255.255.0
設置ip的命令是netsh interface ip set address ……,這里使用set address。
設置備用IP的命令是netsh interface ip add address……,這里使用add address。
設置dns的命令是netsh interface ip setdns ……,這里使用set dns。
設置備用dns的命令是netsh interface ip add dns……,這里使用add dns。
netsh命令是一個應用很廣的命令,這個命令很強大,有關這個命令的詳細信息可以在命令行界面輸入"netsh /?"。