12.2 C
New York
Sunday, November 17, 2024

How to recover WiFi password in Windows


Remembering your WiFi password when you are on a guest network is never easy. Even worse is when it is no longer published and someone else asks you for it. Fortunately, there is a command built into Windows to recover the password for a given WiFi network.

The shell code

Open cmd and run the following command:

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

The output of the command, assuming the network is found, is a long text with a variety of information about the network. To get the network password, 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 you don’t have to remember the entire string.

  • 9 Mind-blowing Canvas Demos

    He element has been a revelation to the visual experts among our ranks. Canvas provides the means to make amazing, efficient animations with the added advantage of not having Flash; Instead, these developers can show off their amazing JavaScript skills. Here are nine amazing canvas demos that…

  • An interview with Eric Meyer

    His early CSS books were instrumental in kick-starting my love for front-end technologies. What was it that made you fall in love with CSS and prompted you to write about it? At first glance, it was its simplicity compared to the table and spacer…

  • Flexbox Equal Height Columns

    Flexbox was supposed to be the pot of gold in the long, long rainbow of insufficient CSS design techniques. And the only disappointment I’ve experienced with flexbox is that it took so long for browser vendors to implement it. I can’t claim to have surpassed the limits of Flexbox either, but…

  • Use custom missing image graphics with jQuery

Related Articles

Latest Articles