1000字范文,内容丰富有趣,学习的好帮手!
1000字范文 > Windows小技巧 -- 已连接wifi密码查看

Windows小技巧 -- 已连接wifi密码查看

时间:2019-07-02 16:30:14

相关推荐

Windows小技巧 -- 已连接wifi密码查看

部分情况,想和朋友分享连接过的Wifi密码,可能不知道怎么来查询,下面记录几种查询已连接的Wifi密码方法,具体如下:

方式一 :无线属性页面查询

快捷键Win + R,打开运行窗口,输入ncpa.cpl快速打开网络连接页面,找到WIFI右键状态,弹出的WLAN 状态窗口点击无线属性, 在弹出的xxx 无线网络属性窗口中,点击安全选项卡勾选显示字符就可以在网络安全秘钥后看到当前wifi的密码,如下图:

方式二 :netsh命令查询

**netsh(Network Shell) **是一个windows系统本身提供的功能强大的网络配置命令行工具,它允许从本地或远程显示或修改当前正在运行的计算机的网络配置。

管理员模式运行命令行窗口,输入netsh wlan show profiles可以查看本地记录的所有wifi配置(连接过的wifi)

想查看某个wifi的密码,则可以通过命令netsh wlan show profile name='查询的wifi名称' key=clear(管理员模式),此处以名称为1011的wifi为例

到此,就通过netsh命令完成了对指定wifi的密码查询了。如想一次性获取本机连接过的所有wifi密码,可以通过命令

netsh wlan show profile * key=clear

for /f "skip=9 tokens=1,2 delims=:" %i in ('netsh wlan show profiles') do @echo %j | findstr -i -v echo | netsh wlan show profiles %j key=clear

方式三: 使用外部软件查询

此处仅介绍和使用 WirelessKeyView 软件,其他类似软件自行查找。

点击此处下载,下载完成后,双击即可。截取部分软件介绍

WirelessKeyView recovers all wireless network keys (WEP/WPA) stored in

your computer by the ‘Wireless Zero Configuration’ service of Windows XP

or by the ‘WLAN AutoConfig’ service of Windows Vista, Windows 7, Windows

8, Windows 10, and Windows Server . It allows you to easily save all

keys to text/html/xml file, or copy a single key to the clipboard. You

can also export your wireless keys into a file and import these keys into

another computer.

可以看出该软件可以获取到本地的所有 (WEP/WPA)加密的Wifi配置信息

简单记录了几种查询本地已连接wifi的密码的获取方式,如有其它方式,欢迎告知~

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。