How to get a stored WLAN "password" from Windows 7?

15

4

I'm trying to connect to my friends wireless network, but we don't know the password (ie. network/WEP/WPA key). The WLAN is secured by WPA2.

My friend's laptop with Windows 7 connects automatically to the WLAN. Is there a way to get the password from his laptop?

wlanwanna

Posted 2010-07-06T09:44:46.610

Reputation:

Answers

7

WirelessKeyView from Nirsoft should do the trick.

However, AVG (antivirus) flags it up as spyware/adware. Not sure if it is or not but just thought you may like to know...

James T

Posted 2010-07-06T09:44:46.610

Reputation: 8 515

This will work, but @Kaushik's answer doesn't require any extra tools. – Grezzo – 2015-01-26T09:43:40.107

@Grezzo I agree. Unfortunately I can't delete it since it has been accepted. – James T – 2015-01-26T13:03:56.000

It isn't spyware but is likely flagged as such because allowing this program to run on a coporate system can be a security vulnerability. – LawrenceC – 2011-08-01T18:22:50.473

17

Reference Here Here is some simple steps On your wifi-icon right click -> Open Network and Sharing Center -> from right tab chose Manage Wireless network -> a list of all devises will occur there . To whom you want to know the password right click on that and go to properties window and chose Security Tab and the Check the box of Show Characters. That is your password

Kaushik

Posted 2010-07-06T09:44:46.610

Reputation: 171

16

If you want to view the security key of a wireless network you've previously been connected to (regardless of whether you're still connected to it), you can try following commands (type into command prompt to execute):

  1. First list all saved profiles

    netsh wlan show profiles

  2. Now you can view the details of a wireless network using its name instead of "ProfileName"

    netsh wlan show profile name="ProfileName" key=clear

Note that you may want to execute the commands inside an elevated command prompt (that is, run cmd.exe with administrator privileges) in order to ensure that you have enough rights to view the networks password.

Read more about managing network profiles here.

This works for Windows 8 (and 10) as well.

taTrifynor

Posted 2010-07-06T09:44:46.610

Reputation: 308

1+1 for this because I have been hitting my head against a wall until I found this. Clear, concise and spot on! – iWeasel – 2015-09-26T11:00:39.613

This is the actual answer. So much misinformation out there for this issue. – Gabriel Magana – 2016-02-01T18:00:09.940

This should be marked as Answer. – Ajay – 2016-09-27T12:15:36.217