我搜索了很多与netsh
和相关的ipconfig /renew
内容ipconfig /release
。
我的想法是编写一个批处理文件,使用网络接口自动连接到特定的无线局域网。
我尝试使用ipconfig /renew release
...但无法使用,因为我的目的是在运行批处理文件之前保持媒体处于断开连接状态。
有什么建议 ?
编辑:
缩小范围至
connect name=Profile2 ssid=SSID2 interface="Wireless Network Connection"
在网络和共享中心哪里可以找到“名称”?
答案1
关于什么:
netsh wlan connect=SSID
http://www.computing.net/answers/networking/wireless-connect-command-line/34771.html
答案2
与 PeeHaa 相同
Usage: connect [name=]<string> [[ssid=]<string>] [[interface=]<string>]
但 Scott Hanselman 提供了好信息在大多数 netsh wlan 命令上。
D:\>netsh wlan
The following commands are available:
Commands in this context:
? - Displays a list of commands.
add - Adds a configuration entry to a table.
connect - Connects to a wireless network.
delete - Deletes a configuration entry from a table.
disconnect - Disconnects from a wireless network.
dump - Displays a configuration script.
export - Saves WLAN profiles to XML files.
help - Displays a list of commands.
refresh - Refresh hosted network settings.
reportissues - Generate WLAN smart trace report.
set - Sets configuration information.
show - Displays information.
start - Start hosted network.
stop - Stop hosted network.
To view help for a command, type the command, followed by a space, and then
type ?.
答案3
断开无线网络连接
netsh wlan disconnect interface="无线适配器名称"
连接到无线网络
netsh wlan connect name="无线网络配置文件名称" ssid="如您所知" interface="无线适配器名称"
您可以通过以下方式获取配置文件名称、接口名称
netsh wlan 显示接口/配置文件
您需要首先为无线网络创建一个配置文件,您可以在控制面板的“网络和共享中心”下的“无线网络管理”中执行此操作。