标签:服务 md5 ati tail 开启 code 禁用 comm pbm
(1)自动获取IP地址:
netsh interface ip set address [name=]"以太网" [source=]dhcp
(2)手动设置IP地址:例如设置 IP 为 192.168.1.198,掩码为255.255.255.0,网关为192.168.0.254,那么 cmd 命令为:
netsh interface ip set address [name=]"本地连接" [source=]static [addr=]192.168.1.198 [mask=]255.255.255.0 [gateway=]192.168.0.254 [gwmetric=]1
(1)显示本机保存的 profiles,配置文件是以 wifi 的 ssid 命名的:
netsh wlan show profiles
(2)然后连接其中一个 profile:
netsh wlan connect name=xxxxx
(3)断开连接
netsh wlan disconnect [[interface=]<string>]
如果系统中有两个或多个可用接口,则参数 interface 是必需的,否则无需指定参数 interface。可以在接口名称中使用通配符字符以便指定多个接口。
其它常用的 netsh 命令:
设置配置文件属性:Netsh WLAN set profileparameter name="" connectionmode=manual
列出配置文件:netsh wlan show profile
导出配置文件:netsh wlan export profile key=clear
删除配置文件:netsh wlan delete profile name=""
添加配置文件:netsh wlan add profile filename=""
连接指定wifi:netsh wlan connect name="wifi name"
列出无线接口:netsh wlan show interface
开启无线接口:netsh interface set interface "Interface Name" enabled
禁用无线接口:netsh interface set interface "Interface Name" disable
输入命令:netsh wlan show profiles name="profileName" key=clear
,就可以查看到某个具体 WiFi 的配置详情,包括密码。
参考:
微软官方指南:Windows Server 2008中用于无线局域网(WLAN)的Netsh命令
介绍网站:如何在Windows 10中使用命令提示符管理无线网络
windows 通过cmd命令(netsh wlan命令)连接wifi
标签:服务 md5 ati tail 开启 code 禁用 comm pbm
原文地址:https://www.cnblogs.com/linuxAndMcu/p/12434418.html