The situation when you urgently need to connect to a wireless network, but the password is lost or has never been changed since purchasing the equipment, is familiar to many. Often security key This information is required for a new gadget, for guests, or after reinstalling the operating system on a laptop. Finding this information can become a real quest if you don't know where exactly your digital access is stored.
In most cases, authorization data is stored on the device itself or in the memory of already connected devices. It's important to understand that Wi-Fi router The access point always has factory settings that can be restored. In this article, we'll cover all possible scenarios, from simply inspecting the case to using the command line.
Don't panic if you lose your notes. Modern operating systems and hardware allow you to retrieve or reset the necessary data in several ways. The key is to act consistently and carefully check the characters you enter, as letter case is of critical importance.
Find the password on the router case and in the documentation
The most obvious and often overlooked method is a physical inspection of network equipment. Manufacturers routers and modems are required to include factory data on a label, which is usually located on the bottom or back panel of the device. This is where default password, installed at the factory.
Look for a field labeled "Wireless Key," "WPA Key," "PIN," or "Password." Next to it will be a series of numbers and letters. In some cases, especially on older models, this field may be blank, indicating no default security, but this is rare these days. If the sticker is worn or faded, try using your smartphone's flashlight at different angles.
⚠️ Note: If you've previously changed your router settings, the factory password on the sticker will no longer work. In this case, it was changed to a custom password, and you can only restore it through the device interface or by resetting it to factory settings.
It's also worth checking the documentation that comes with the unit. In the box from TP-Link, Asus or Mikrotik There's often a separate insert with a unique code for initial setup. This code is often the same as the default WiFi network password. Keeping such pieces of paper in a separate folder is a good habit for any smart home owner.
Viewing a saved key in Windows
If you have previously connected a computer running Windows 10 or Windows 11, the operating system could store the access key in its storage. This eliminates the need to re-enter the password each time, but also allows you to view it if needed. This requires access to the network settings.
Follow the instructions to find saved data through the GUI:
- 🔍 Click the "Start" button and start typing "Control Panel", then open the found item.
- 📡 Go to the "Network and Internet" section and select "Network and Sharing Center".
- 🔗 In the right part of the window, click on the name of your active Wi-Fi network (in blue).
- 🔑 In the window that opens, click the "Wireless Network Properties" button, then go to the "Security" tab.
- 👁️ Check the box next to "Show entered characters" to see hidden text.
An alternative and faster method for experienced users is to use the command line. This method works even if the network graphical interface is temporarily unavailable. You will need to run cmd on behalf of the administrator.
netsh wlan show profile name="NETWORK_NAME" key=clear
In the resulting report, find the "Key Content" line. The password you're looking for will be listed there. Note that the network name in the command must be enclosed in quotation marks if it contains spaces. This method is especially useful when you need to quickly access data without diving deep into menus.
How to find out your password on Android and iOS
Smartphone owners often wonder where to find a key if they need to connect a laptop but only have their phone, which is already online, at hand. Modern versions of mobile operating systems allow you to share access or view saved keys, but the functionality varies depending on the platform.
On devices Android (version 10 and above) the process is fairly straightforward. Go to WiFi settings, select the network you're connecting to, and tap "Share" or the QR code icon. A text password is often displayed under the graphic code. If there's no text, you can scan the QR code with another device or a scanner app, which will decode the string.
Ecosystem users Apple These have their own peculiarities. On an iPhone, you can only view the password if the device is synced with a Mac via iCloud Keychain. iOS 16 and later added a viewing feature: go to "Settings" -> "Wi-Fi," tap the "i" icon next to the network, and tap the hidden dots of the password, confirming the action with Face ID or Touch ID.
⚠️ Note: Viewing passwords on iOS requires the device to be unlocked and biometrically authenticated. Without this, the security system will not reveal sensitive data.
You can also use the "Password Sharing" feature between Apple devices. If your Mac is already connected to the network, bring your iPhone with Bluetooth and WiFi enabled near it. A prompt will appear on your computer screen asking if you want to share your passkey. This works thanks to the protocol Airdrop and data encryption.
Login to the router's web interface
If the sticker has worn off and no device displays the password, you can still access the router settings directly. To do this, you need the gateway IP address (usually 192.168.0.1 or 192.168.1.1) and the administrator login/password. This information is often also found on the sticker, but it is different from the WiFi password.
Once you're in the interface (often called the admin panel), find the "Wireless" or "Wireless Network" or "WLAN" section. There, the current password will be displayed in the "Wireless Password," "WPA-PSK," or "Security Key" field. You can not only view it but also change it to a more complex one.
The table below shows the standard addresses and login details for popular hardware models:
| Router brand | IP address | Default login | Default password |
|---|---|---|---|
| TP-Link | 192.168.0.1 | admin | admin |
| Asus | 192.168.1.1 | admin | admin |
| D-Link | 192.168.0.1 | admin | (empty) |
| Keenetic | 192.168.1.1 | admin | 1234 |
| Tenda | 192.168.0.1 | admin | admin |
In this case, a full reset of the device will help. Interfaces may vary between manufacturers, but the partition layout logic remains similar.
What to do if the router's IP address has changed?
If the default address 192.168.1.1 doesn't open the settings page, check your network adapter settings in Windows. The "Default Gateway" line will display your router's current IP address.
Resetting the router to factory settings
When all other methods have been tried and access is still not possible, a radical but effective method remains: a reset. This procedure will return the router to its factory state. All user settings, including the network name and WiFi password, will be reset to factory defaults.
To reset the router, locate the "Reset" or "WPS/Reset" button on the device. It's often recessed to prevent accidental pressing. You'll need a thin object, such as a paperclip or toothpick. Press and hold the button for about 10-15 seconds until the router's indicator lights flash simultaneously.
After rebooting, the device will share the network with the name printed on the sticker (e.g., TP-Link_XXXX) and request a password, which is also printed there. This is a guaranteed way to restore access, but it requires subsequent internet configuration (PPPoE, L2TP, or dynamic IP) if your ISP requires authentication.
☑️ Checklist before resetting your router
Using the Command Prompt and PowerShell
For those who prefer a more technical approach, it's possible to manage WiFi profiles through the console. This is especially useful for system administrators or users who don't have access to the Windows graphical interface. Commands allow you to manage the list of known networks.
First, you need to find out the exact profile name. Enter the command:
netsh wlan show profiles
Once you have the list, you can export the profile settings to an XML file, where the password will be stored in cleartext (in an easily readable encoding). However, it's easier to use the command shown in the Windows section with the flag key=clearThis allows you to instantly see the key without creating extra files.
IN PowerShell You can also use cmdlet commands, but the standard netsh remains the most universal tool, working in all versions of Windows from XP to 11. It does not require additional software and is accessible from anywhere in the system.
Frequently Asked Questions (FAQ)
Is it possible to hack your neighbor's WiFi if you forgot your password?
No, hacking other people's networks is illegal and violates computer security laws. Use only the legal methods described in this article to restore access to your own equipment.
What should I do if the sticker on my router is completely worn off?
If the sticker is illegible, try resetting it. This will reset the router to its default factory settings, which can be found online for your specific device model (e.g., "default password for Asus RT-N12").
Where can I find my WiFi password on a Mac without an iPhone?
Open Keychain Access via Spotlight or from the Applications folder. Find your network name in the list, double-click it, and check the "Show password" box. You'll be prompted to enter your Mac user account password.
Why doesn't the router accept the password even though I enter it correctly?
Check your keyboard layout (RU/EN) and Caps Lock. Often, the problem lies in an extra space at the end of a line or confusion between the number 0 and the letters O, 1, and I. Try copying the password from your saved settings, if possible.
Does the WiFi password change after updating the router firmware?
Typically, a firmware update doesn't affect user security settings, and the password remains the same. However, if the update was a critical or major update, the settings may revert to factory defaults. In this case, check the sticker on the device.