- Run CMD
- Type command : netsh wlan show profiles name=your_network_name key=clear
- 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
转到工具栏并选择显示隐藏图标按钮,然后选择连接的WiFi
Right click on the yellow coloured area and select Open network & Internet Settings
右键单击黄色区域,然后选择打开网络和互联网设置
Select the Change adapter option
选择更改适配器选项
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
然后将列出所有连接,然后选择您要获得密码的WiFi连接,然后右键单击并选择状态
Then will open a status window and then select the Wireless Properties
然后将打开一个状态窗口,然后选择无线属性
after that select the Security
tab and check the Show characters
Then you will get the password from the red marked area.
之后,选择安全选项卡,并检查显示字符,然后您将从红色标记区域获得密码。
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名称列表
netsh wlan show profile <friends-wifi-name> key=clear
will show saved wifi details including password at Security settings > Key Content
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)
仅供管理员使用。查看它的另一种方式是进入控制面板中的共享和安全中心,然后在网络设置中单击“显示密码”,但这也是仅供管理员使用的(此选项旁边有“盾牌”)
我是一名优秀的程序员,十分优秀!