15

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?

3 Answers 3

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...

3
  • 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
    Commented Aug 1, 2011 at 18:22
  • This will work, but @Kaushik's answer doesn't require any extra tools.
    – Grezzo
    Commented Jan 26, 2015 at 9:43
  • @Grezzo I agree. Unfortunately I can't delete it since it has been accepted.
    – James T
    Commented Jan 26, 2015 at 13:03
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

0
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.

3
  • 1
    +1 for this because I have been hitting my head against a wall until I found this. Clear, concise and spot on!
    – iWeasel
    Commented Sep 26, 2015 at 11:00
  • This is the actual answer. So much misinformation out there for this issue. Commented Feb 1, 2016 at 18:00
  • This should be marked as Answer.
    – Ajay
    Commented Sep 27, 2016 at 12:15

You must log in to answer this question.