|
netsh不完整,就没有办法自动设置固定ip,自动读取无线配置,实现开机上网
固定ip,在wifi情况下,pecmd是无效的,跟作者沟通过,没有解决。只能通过netsh实现
有线网络无此问题。
手动设置IP地址....
Netsh interface IP Set Addr "wlan" Static 192.168.86.97 255.255.255.0 192.168.86.1 1
echo 手动设置DNS地址....
Netsh interface IP Set dns "wlan" static 211.148.224.166 primary
netsh wlan add profile filename="%~dp0TP-Link_4294c8.xml"
netsh wlan connect name="TP-Link_4294c8"
netsh wlan show interfaces
|
|