Jenkins

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

Dipak Suthar

I am Dipak, .NET Developer | Software engineer | Blogger at thecodehubs.com. I have hands-on experience in Angular, .Net Core ,C#, ASP.NET MVC, ASP.NET, SQL SERVER, SQL Server Reporting Service (SSRS), C, C++, JavaScript, JQuery, AJAX, Bootstrap, JSON, XML, HTML, CSS. My main passion is learning new technologies and sharing knowledge, with programming I loves photography, traveling, and listening to songs. Engineering professional with a Bachelor of Computer Applications - BCA focused on Computer Science from Veer Narmad South Gujarat University, Surat.

Recent Posts

Testing hk

Testing

2 years ago

Create and Used PIPE in angular

In this article, we have to show Create and Used PIPE in angular

2 years ago

Operation

Testing

2 years ago

Create and Used PIPE in angular

In this article, we have to show Create and Used PIPE in angular

2 years ago

Create and Used PIPE in angular

In this article, we have to show Create and Used PIPE in angular

2 years ago

TETS NEW

test

2 years ago