Skip to main content

How to find the all Wi-Fi password of recenlty connected to the computer

 

Open the command prompt with administrator

1. type the command netsh

 Ex. C:\Windows\system32>netsh

2. wlan show profile

 Ex. netsh>wlan show profile

 Here you see all recently connected wifi profile

3.  netsh>wlan show profile "VIVO 1802" key=clear

 Example.

Profile vivo 1802 on interface Wi-Fi:

=======================================================================

Applied: All User Profile

Profile information

-------------------

    Version                : 1

    Type                   : Wireless LAN

    Name                   : vivo 1802

    Control options        :

        Connection mode    : Connect manually

        Network broadcast  : Connect only if this network is broadcasting

        AutoSwitch         : Do not switch to other networks

        MAC Randomization  : Disabled

Connectivity settings

---------------------

    Number of SSIDs        : 1

    SSID name              : "vivo 1802"

    Network type           : Infrastructure

    Radio type             : [ Any Radio Type ]

    Vendor extension          : Not present

Security settings

------

    Authentication         : WPA2-Personal

    Cipher                 : CCMP

    Authentication         : WPA2-Personal

    Cipher                 : GCMP

    Security key           : Present

    Key Content            : 12345678

Comments

Post a Comment

Popular posts from this blog

Enable or Disable “Set Time (Zone) Automatically” in Windows 10 Using Registry Editor

Enable or Disable “Set Time (Zone) Automatically” in Windows 10 Using Registry Editor Press the Windows logo key + R to open the Run box. Type  regedit  and hit Enter. When the Registry Editor opens, navigate to the following key: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W32Time\Parameters In the right pane you can see a string value named  Type . If you want Windows 10 to set time automatically, set its value data to  NTP . To disable automatic time synchronization, change its value to  NoSync . In order to enable or disable “Set Time Zone Automatically” in Windows 10, navigate to the following key: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\tzautoupdate Double-click the 32-bit DWORD “ Start ” in the right pane. Set its value data to 3 if you want to make Windows 10 set time zone automatically. If you want to disable “Set Time Zone Automatically” in Windows 10, just set the value to 4. Reboot your computer for the registry changes to take ...

Find your Window licence key from inside Windows

Entering the following lines into an  admin Command Prompt  or PowerShell worked to display the OEM key embedded in our system's UEFI/BIOS. However, these commands didn't return any keys on other two machines we used for testing despite Windows 10 being activated. wmic path softwarelicensingservice get OA3xOriginalProductKey or powershell "(Get-WmiObject -query ‘select * from SoftwareLicensingService’).OA3xOriginalProductKey" There's also a commonly cited Visual Basic script that retrieves registry-based Windows keys (not those stored in the UEFI/BIOS). You can download the  script here . Copy this text and paste it into Notepad, saving it as a .vbs file. Then double-click to launch the file.