How to Recover Your Wi-Fi Password If You Forgot It: A Complete Guide

Forgetting your home Wi-Fi password is a common occurrence for many. It's especially frustrating when you urgently need to connect a new device, but the password sticker on your router has long since worn off or disappeared. Fortunately, there are several ways to restore network access—and resetting your router to factory settings isn't always necessary.

In this article, we'll cover all possible methods: from viewing saved passwords on connected devices to restoring them through the router's admin panel. You'll learn how to Windows, macOS, Android And iOS, and also what to do if standard methods don’t work. Important: Some methods require physical access to the router or administrator rights on the computer.

If you rent a place or use public Wi-Fi (for example, at a cafe or hotel), you won't be able to recover the password yourself—you'll need to contact the network owner. For home networks, read on.

1. View the saved password on the connected device

The fastest way is to extract the password from a device that's already connected to Wi-Fi. This works if the device has previously successfully logged into the network and saved its data.

On Windows this is done through Network Control Center:

  1. Click Win + R, enter ncpa.cpl and press Enter.
  2. Right-click on your Wi-Fi connection → "State"Wireless Network Properties.
  3. Go to the tab "Safety" and check the box "Show input characters"strong>.

Open "Network Connections" (ncpa.cpl) | Select an active Wi-Fi connection | Go to "Wireless Network Properties" | Show password characters on the "Security" tab -->

On macOS the path is a little longer:

  1. Open System Preferences"Net"strong>.
  2. Select your Wi-Fi connection → "Additionally"**strong>.
  3. On the tab «Wi-Fi»strong> Find your network and click Show passwordstrong> (you will be asked to enter your Mac account password).

On Android (versions 10+) You can't view the password without root rights, but you can share it via QR code:

  1. Open "Settings"strong> → «Wi-Fi»strong>.
  2. Tap your network → Share**strong>.
  3. The system will generate a QR code that can be scanned with another device.
⚠️ Attention: On iPhone And iPad It's impossible to view a saved Wi-Fi password without jailbreaking. However, you can share the network via "Settings"strong> → «Wi-Fi»strong> → [your network] → Share Password (only works between Apple devices).

2. Recover your password through the router's admin panel

If no device has saved the password, the next step is to access the router's web interface. To do this:

  1. Connect to the router via cable (LAN) or via Wi-Fi (if the device was already connected before).
  2. Open your browser and enter in the address bar 192.168.0.1 or 192.168.1.1 (the exact address is indicated on the router sticker).
  3. Enter your login and password to log in (usually admin/admin or admin/empty).

Further steps depend on the router model:

  • 🔧 TP-Link: Go to Wireless → Wireless Security. The password is specified in the field. "PSK Password"**strong>.
  • 🌐 ASUS: Open Wireless Network → Authentication Settings. The required password is in the field "WPA Key"**strong>.
  • 📡 Keenetic: Go to Wi-Fi network → Access pointThe password is hidden under the asterisks - click "Show"**strong>.
  • 🔄 D-Link: Path: Wi-Fi → Basic Settings. Field "PSK encryption key"**strong>.
Router manufacturer Control panel address Default login/password Wi-Fi password path
TP-Link 192.168.0.1 or tplinkwifi.net admin/admin Wireless Mode → Security
ASUS 192.168.1.1 or router.asus.com admin/admin Wireless Network → Authentication
Keenetic 192.168.1.1 or my.keenetic.net admin/empty or 1234 Wi-Fi network → Access point
D-Link 192.168.0.1 or 192.168.1.1 admin/empty or admin/admin Wi-Fi → Basic Settings
Zyxel 192.168.1.1 or my.keenetic.net admin/1234 Wi-Fi Network → Access Point
⚠️ Attention: If you changed your login/password for entering the router panel and don’t remember them, you will have to do it Hard reset (see section 5). Also check if the router is connected USB modem - some models (for example, Keenetic) may block access to Wi-Fi settings when a 3G/4G connection is active.

TP-Link|ASUS|Keenetic|D-Link|Zyxel|Other|I don't know-->

3. Use the provider's application (for subscribers)

Many internet service providers (eg. Rostelecom, MTS, Beeline) offer mobile apps for managing your router. If your router is provided by your ISP, try:

  1. Download the provider's official app (for example, Rostelecom Personal Accountstrong> or My MTSstrong>).
  2. Log in using your contract or personal account number.
  3. Find the section «Wi-Fi»strong> or Router Settingsstrong> - the current password is usually displayed there.

The advantage of this method is that you don't need to know the router's IP address or login information. However, it only works for equipment linked to a subscription.

List of applications from popular providers:

  • 📱 Rostelecom: "Personal account" (Android/iOS).
  • 📶 MTS: "My MTS" (Internet section).
  • 🌍 Beeline: "My Beeline" → "Services" → "Internet".
  • 🔗 TTK (Dom.ru): Dom.ru Personal Account.

4. Recover password via command line (Windows)

For advanced users, there is a way to extract the password through command line WindowsThis method works even if you're not an administrator on the PC, but the device has previously connected to Wi-Fi.

Open Command line as administrator (Win + XTerminal (Administrator)) and run:

netsh wlan show profiles

You will see a list of all saved networks. Copy the name of the desired network (for example, MY_WIFI_2.4G) and run:

netsh wlan show profile name="MY_WIFI_2.4G" key=clear

Find the line in the results The "key content"**strong> is your password.

What to do if the command prompt says "Access denied"

This means your Windows account doesn't have administrator rights. Try:

1. Log in using an account with administrator rights.

2. Use PowerShell with the command:

Get-NetConnectionProfile | Where-Object {$_.Name -eq "MY_WIFI_2.4G"} | Select-Object -ExpandProperty Password

(replace MY_WIFI_2.4G with your network name).

3. If that doesn’t help, use one of the other methods in this article.

An alternative way to Windows 10/11 - Use PowerShell:

(netsh wlan show profiles) | Select-String "\:(.+)$" | %{$name=$_.Matches.Groups[1].Value.Trim(); $_} | %{(netsh wlan show profile name="$name" key=clear)} | Select-String "Key contents\W+\:(.+)$" | %{$pass=$_.Matches.Groups[1].Value.Trim(); $_} | %{[PSCustomObject]@{PROFILE_NAME=$name;PASSWORD=$pass}} | Format-Table -AutoSize

This command will output a table with all saved networks and their passwords.

5. Reset the router to factory settings (last resort)

If none of the previous methods worked, the only thing left is hard resetThis will erase all router settings, including the Wi-Fi password, and return it to its out-of-the-box state.

Instructions:

  1. Find the small button on the back of the router. "Reset"**strong> (usually recessed into the body).
  2. Take a paper clip or a toothpick and press and hold the button 10-15 secondsuntil the indicators start flashing.
  3. Release the button and wait for the reboot (1-2 minutes).

After reset:

  • 🔄 Connect to a Wi-Fi network with default name (indicated on the router sticker).
  • 🔐 The password will also be standard (for example, 12345678 or the last 8 digits of the MAC address).
  • 🛠️ Go to your router's control panel (192.168.0.1) and set up a new network with a unique name and a strong password.
⚠️ Attention: Reset deletes all settings, including:
  • Wi-Fi passwords (2.4 GHz and 5 GHz).
  • Settings IPTV (if the TV is connected via a router).
  • Rules parental control And guest network.
  • Port passes (port forwarding) for gaming consoles or cameras.

If the router is configured by the provider (for example, for PPPoE(connections), internet access may be lost after a reset. In this case, you'll need to reconfigure or call support.

6. Alternative methods (for advanced users)

If standard methods don't help, you can try less obvious options.

6.1. Extract the password from the router configuration file

Some routers (eg. ASUS or Keenetic) allow you to save settings to a file and view it.

  1. Go to your router's control panel.
  2. Find the section Backupstrong> or Export Settingsstrong>.
  3. Download the configuration file (usually with the extension .cfg or .bin).
  4. Open it in a text editor (eg. Notepad++) and find the line with WPAPSK or Password.

6.2. Use specialized utilities

For Windows There are programs that show all saved Wi-Fi passwords:

  • 🖥️ WirelessKeyView (from NirSoft) is a portable utility that does not require installation.
  • 🔍 WiFi Password Revealer — displays passwords in a convenient interface.
  • 🛠️ Magical Jelly Bean WiFi Password Revealer — exports passwords to a file.

For Android It will work with root rights WiFi Password Viewer (available in Google Play). On iPhone Without jailbreak, such utilities do not work.

6.3. Contact your provider

If the router was issued by the provider (for example, Rostelecom or MGTS), call support and ask:

  • 📞 Provide your Wi-Fi password (sometimes operators store this information).
  • 🔄 Remotely reset your router to factory settings.
  • 📋 Send a new technician for reconfiguration (may be a paid service).

7. How to avoid losing your password in the future

To avoid this problem again, follow these simple rules:

  • 📝 Keep your password in a safe place: use password managers (KeePass, 1Password, Bitwarden) or write it down in a notebook (but not on the router sticker!).
  • 🔄 Update your router firmware regularly: New versions often add settings backup features.
  • 📱 Take a photo of the router sticker: It usually contains the standard password and login details for the control panel.
  • 🖧 Set up a guest network: If your friends need Wi-Fi, give them access to a guest network with a separate password.
  • 🔐 Use the QR code to connect: Many routers allow you to generate a QR code to quickly connect devices without entering a password.

It is also useful to include cloud management (if supported by your router). For example, TP-Link there is service Tether, and at ASUSASUS Router AppThese apps save your settings in the cloud and allow you to restore access even after a reset.

FAQ: Frequently asked questions about Wi-Fi password recovery

Is it possible to recover a Wi-Fi password if the router is not mine (for example, in a cafe or hotel)?

No. It's impossible to recover someone else's network password without access to the router or the owner's consent. In public places, you'll usually be given a password when ordering or registering. If you've forgotten it, contact the administrator.

I reset my router, but the internet isn't working. What should I do?

Resetting your connection settings to your provider will clear them. Here's what you need to do:

  1. Check with your provider for the connection type (PPPoE, DHCP, L2TP etc.).
  2. Go to the router panel and enter the connection details (login/password from the provider).
  3. If you're unsure, call a technician or ask your provider's support team to configure your router remotely.
Is it possible to hack your Wi-Fi if you forgot your password?

Technically, you can try to brute force passwords using programs like Aircrack-ng, But:

  • This takes a long time (may take hours or days).
  • Illegal if the network is not yours.
  • Modern routers with WPA3 are practically impossible to hack.

It is much easier and faster to use the methods in this article.

How to create a strong Wi-Fi password?

Follow the rules:

  • 🔢 Length not less than 12 characters.
  • 🔤 Use the letters (uppercase and lowercase), numbers and symbols (!@#$%).
  • 🚫 Avoid obvious combinations (12345678, qwerty, dates of birth).
  • 📌 Example of a strong password: Purpl3$un@Rise2026!

Do not use the same password for Wi-Fi and the router admin panel!

What should I do if my router displays an error when accessing the control panel?

Possible causes and solutions:

  • 🔌 Invalid IP address: try it 192.168.0.1, 192.168.1.1 or 192.168.8.1.
  • 🔒 Changed login details: If you changed your login/password and forgot them, the only option left is to reset them.
  • 🌐 Browser issues: try it Chrome, Firefox or Edge in incognito mode.
  • 🔄 Router failure: Unplug it from the power outlet for 30 seconds and plug it back in.