How To Find All WI-FI Passwords Saved On Your Computer

Hello Friends, In this article I will show you how to find all WI-FI passwords saved on your computer.

How am I able to see the Wi-Fi passwords of previously connected wireless connections? Is there a way to look up the saved Wi-Fi passwords on my computer so I can connect my phone to the same network.

(1) This method only work for active connections. That means if you are not connected to a Wi-Fi networks, you will not be able to get WI-FI password.

(2) We can only get saved password, if in case you update the password and you never saved the new password to connected system that time you will
get old password which was saved earlier . if you saved new update password than you will get new updated password

Step 1 :-  Open any editor like notepad or notepad ++

Step 2 :- Write below the line of code.

@echo off
setlocal enabledelayedexpansion
for /f "tokens=2 delims=:" %%a in ('netsh wlan show profile') do (
    set "ssid=%%~a"
    call :getpwd "%%ssid:~1%%"
)
pause
:getpwd
set "ssid=%*"
for /f "tokens=2 delims=:" %%i in ('netsh wlan show profile name^="%ssid:"=%" key^=clear ^| findstr /C:"Key Content"') do (
  echo Wi-Fi Name: %ssid% Password : %%i
)

Step 3 :- Save file as .bat extension (e.g., wifipassword.bat)

Step 4 :- Now Open Command Prompt and  select the saved wifipassword.bat file

this article is only used when you forgot a password, don’t miss used to hack another system password

Please give your valuable feedback and if you any concern regarding this article, please let me know.

Also Check How To Generate C# Class From SQL Database Table

Submit a Comment

Your email address will not be published. Required fields are marked *

Subscribe

Select Categories