这个自动热键程序只会让我得到部分的帮助。我需要选择"Internet Protocol Version 4(TCP/IPv4 4)“并单击”无线网络连接属性“上的属性
Run ncpa.cpl
WinWaitActive Network Connections
SendInput {Tab 4}{Right}!{Enter} ; change {Tab 4} to suit the position of your specific connection in the Connections list
WinWaitActive Wireless Network Connection Properties ; change the title if necessary, for example, if you're on LAN.
SendInput {Down 4}!r发布于 2015-09-23 14:53:01
我想你想要改变设备的IP地址?
更改ip和网关:
Run, PowerShell New-NetIPAddress –InterfaceAlias “Wireless Network Connection” –IPv4Address “192.168.0.1” –PrefixLength 24 -DefaultGateway 192.168.0.254更改主dns服务器和辅助dns服务器:
Run, PowerShell Set-DnsClientServerAddress -InterfaceAlias “Wireless Network Connection” -ServerAddresses 192.168.0.1, 192.168.0.2https://stackoverflow.com/questions/32739632
复制相似问题