Wlan常见命令(可以查看连接密码)

参考网站 :https://www.windowscentral.com/how-manage-wireless-networks-using-command-prompt-windows-10

Netsh WLAN show profiles  --- 显示了每个无线适配器在计算机上存储的所有配置文件

Netsh WLAN show profiles interface="WLAN"  ---显示特定无线适配器的配置文件列表

Netsh WLAN show drivers ---获取有关计算机的无线适配器的驱动程序信息

Netsh WLAN show wirelesscapabilities  ---查看所有受支持的无线适配器功能

Netsh WLAN show interfaces --- 查看特定的无线适配器信息

Netsh WLAN show profile name="Profile_Name" key=clear  ---查看密码  如果您丢失了密码并且忘记了将另一台设备连接到特定Wi-Fi接入点的网络安全密钥,则可以使用以下命令查看网络安全密钥

Netsh WLAN set profileparameter name="Profile_Name" connectionmode=manual   --- 防止计算机自动连接到其他网络,自动停止连接超出的网络

Netsh WLAN set profileparameter name=" Profile_Name" connectionmode=auto ---Windows 10将始终优先选择您选择自动连接的那些网络。如果要在优先级列表中向上移动网络

Netsh WLAN delete profile name="Profile_Name" --- 删除密码和配置

Netsh WLAN export profile key=clear folder="Folder_Path" ---导出所有无线网络配置文件

Netsh WLAN export profile name="Profile_Name" key=clear folder="Folder_Path"   ---导入特定配置

Netsh WLAN add profile filename="File_Path.XML" ---导入配置

Netsh WLAN add profile filename="Path_With_Filename.xml" Interface="Wireless Network Connection" user=current  --- 将配置文件导入到特定的无线接口而仅导入到当前用户

Netsh WLAN show WLANreport   --- 创建无线报告  对与接入点的无线连接进行故障排除

原文地址:https://www.cnblogs.com/wangjinming/p/12580231.html