Saturday, July 27, 2024

How to Retrieve WiFi Password on Windows

Software DevelopmentHow to Retrieve WiFi Password on Windows

Remembering the WiFi password when on a guest network is never easy. Even worse is when it’s no longer posted and someone else is asking you for it. Luckily there’s a built in Windows command to recover the password of a given WiFi network.

The Shell Code

Open cmd and execute the following command:

netsh wlan show profile name="David Walsh's Network" key=clear

The result of the command, assuming the network is found, is a long text output with a variety of information about the network. To get the see the password for the network, look under the “Security settings” heading which will look like this:

Security settings
-----------------
    Authentication         : WPA2-Personal
    Cipher                 : CCMP
    Authentication         : WPA2-Personal
    Cipher                 : GCMP
    Security key           : Present
    Key Content            : **THE_PLAIN_TEXT_PASSWORD**

As with any complicated command line format, it’s best to create an alias so that you don’t need to remember the full string!

Request Metrics real user monitoring
Request Metrics real user monitoring
Request Metrics real user monitoring
  • Detect DOM Node Insertions with JavaScript and CSS Animations
  • Serving Fonts from CDN

    Serving Fonts from CDN

    For maximum performance, we all know we must put our assets on CDN (another domain).  Along with those assets are custom web fonts.  Unfortunately custom web fonts via CDN (or any cross-domain font request) don’t work in Firefox or Internet Explorer (correctly so, by spec) though…

  • Advanced CSS Printing – Using JavaScript Double-Click To Remove Unwanted DIVs
  • dwImageProtector Plugin for jQuery

    dwImageProtector Plugin for jQuery

    I’ve always been curious about the jQuery JavaScript library. jQuery has captured the hearts of web designers and developers everywhere and I’ve always wondered why. I’ve been told it’s easy, which is probably why designers were so quick to adopt it NOT that designers…


Check out our other content

Check out other tags:

Most Popular Articles