gpt4 book ai didi

How to View Saved WiFi Passwords on Windows 7, 8, & 10(如何在Windows 7、8和10上查看保存的WiFi密码)

转载 作者:bug小助手 更新时间:2023-10-26 21:27:34 27 4
gpt4 key购买 nike



Can I get the wifi password of my windows pc when it is successful connected? Can I get it from a file or is there another way to do that?

当我的Windows PC连接成功时,我可以获得它的WiFi密码吗?我可以从文件中获得它吗?或者有其他方法可以做到这一点吗?


更多回答

This is not for criminal purposes

这不是为了犯罪目的

优秀答案推荐


  1. Run CMD

  2. Type command : netsh wlan show profiles name=your_network_name key=clear

  3. Press Enter



Password will be shown in "Security settings" under the Key Content

密码将显示在密钥内容下的“安全设置”中



Get windows wifi password

获取Windows WiFi密码



Go to the toolbar and select the Show Hide Icons button and select the connected wifi
enter image description here

转到工具栏并选择显示隐藏图标按钮,然后选择连接的WiFi



Right click on the yellow coloured area and select Open network & Internet Settings

右键单击黄色区域,然后选择打开网络和互联网设置



enter image description here



Select the Change adapter option
enter image description here

选择更改适配器选项



Then will list all the connections then select the wifi connection which you want to get the password then right click and select the Status
enter image description here

然后将列出所有连接,然后选择您要获得密码的WiFi连接,然后右键单击并选择状态



Then will open a status window and then select the Wireless Properties
enter image description here

然后将打开一个状态窗口,然后选择无线属性



after that select the Security tab and check the Show characters Then you will get the password from the red marked area.

之后,选择安全选项卡,并检查显示字符,然后您将从红色标记区域获得密码。



enter image description here



just 2 lines of cmd codes:

只有两行cmd代码:


netsh wlan show profile
netsh wlan show profile <friends-wifi-name> key=clear





netsh wlan show profile will show list of wifi-provider names

netsh wlan show profile将显示wifi-provider名称列表


wifi networks list


netsh wlan show profile <friends-wifi-name> key=clear will show saved wifi details including password at Security settings > Key Content
wifi password and details

Netsh无线局域网显示配置文件 key=lear将显示保存的wifi详细信息,包括安全设置中的密码>密钥内容



If you want to get them all in a simple table you can run this "one liner" in a PowerShell window

如果你想把它们都放在一个简单的表格里,你可以在一个PowerShell窗口中运行这个“一行程序”


$data =@(); foreach($item in $list) { netsh wlan show profile "$item" key=clear | findstr Key |  ForEach-Object {$row = "" | Select-Object Network,Password; $row.Network = $item; $row.password = $_.Substring(29); $data += $row}}; $data | Format-Table -AutoSize

Enjoy :)

享受:)


更多回答

Where are the security settings

安全设置在哪里

I hace never heard of them. Can i access them without admin previligies?

我从来没有听说过他们。我可以在没有管理员权限的情况下访问它们吗?

When you type this command into CMD there will be text-output and in one line there'll be written "Security Settings"

当您在CMD中输入此命令时,将会出现文本输出,并且在一行中会写下“Security Setting”

Also for for non-admins?

也适用于非管理员?

It's for administrator only. Other way to view it is to enter Sharing and Security Centre in Control Panel and in the network settings click on "Show Password" but this one is also admin-only (there is "shield" next to this option)

仅供管理员使用。查看它的另一种方式是进入控制面板中的共享和安全中心,然后在网络设置中单击“显示密码”,但这也是仅供管理员使用的(此选项旁边有“盾牌”)

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com