Reputation: 896
Can I get the Wi-Fi password for my Windows PC when it is successfully connected? Can I get it from a file or is there another way to do that?
Upvotes: 1
Views: 2927
Reputation: 2918
There are two ways I do this depending on the circumstances. Sidebar: If you prefer a visual walkthrough, I created a video answering this question. See: how to view saved passwords.
If you're currently connected to the network:
If you're NOT connected to the network you want the password for:
netsh wlan show profile
netsh wlan show profile name="Simon" key=clear
(Replace Simon with the name of the network you're interested in and hit enter.)Note: You can only get the password if your computer is connected via wi-fi. In your question, it wasn't clear if you are connected wirelessly or via cate-5. Being physically connected to the modem doesn't pass your wifi credentials to your computer.
Upvotes: 0
Reputation: 147
If you want to get them all in a simple table you can run this "one liner" in a PowerShell window
$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 :)
Upvotes: -1
Reputation: 1176
just 2 lines of cmd codes:
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 <friends-wifi-name> key=clear
will show saved wifi details including password at Security settings > Key Content
Upvotes: -1
Reputation: 2341
Get windows wifi password
Go to the toolbar and select the Show Hide Icons
button and select the connected 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
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.
Upvotes: -1
Reputation: 54
Password will be shown in "Security settings" under the Key Content
Upvotes: 3