Connecting to a wireless network on a laptop or desktop PC with Windows 10 Usually, this isn't difficult—just click the Wi-Fi icon in the system tray and select the desired network. But what if the icon disappears, the network is hidden, or the system stubbornly refuses to accept the password? And what if you've forgotten the security key, but it's saved on another device?
In this article we will look at All current methods for entering a Wi-Fi password on Windows 10, including rare scenarios: connecting to hidden networks, importing settings from other devices, and recovering passwords via the command line. We'll pay special attention to common errors (for example, "Unable to connect to this network") and ways to fix them without rebooting the router.
If you're setting up internet on your PC for the first time or encountering a problem after a system update, the instructions below will help you avoid contacting support. For your convenience, each method is illustrated with screenshots (relevant for Windows 10 version 22H2) and is provided with step-by-step checks.
1. Standard method: via the taskbar
The fastest method is to use the Wi-Fi icon in the lower right corner of the screen. This works for most users and takes no more than 30 seconds.
How does this work:
- Click on the icon networks (or Internet) in the system tray (next to the clock). If the icon is not there, expand the hidden icons by clicking the arrow.
↑. - Select your network from the list of available networks. If your network isn't listed, check if broadcast mode is enabled on your router. SSID (sometimes it is disabled for security).
- Check the box
Connect automatically, if you want the PC to remember the network. - Enter password (security key) and press
Next.
If the password is entered correctly, a notification will appear in a few seconds. "Connected"If not, check:
- 🔄 Character case: Passwords are case sensitive. For example,
PasswordAndpassword- different keys. - 📶 Distance to the router: If the signal is weak, Windows may not connect even with the correct password.
- 🔒 Encryption type: must be selected in the router settings
WPA2-PSKorWPA3-PSK(outdatedWEP(not supported in modern versions of Windows).
2. Connect to a hidden Wi-Fi network
Some networks (for example, in offices or hotels) hide their name (SSID) for security. In this case, the standard method won't work—you'll have to enter the data manually.
Instructions:
- Open
Parameters(Win + I) and go toNetwork and Internet → Wi-Fi. - Click
Managing known networks, then -Add a new network. - In the field
Network nameenter SSID (check with your network administrator or look at the router sticker). - Select
Security type- usually it isWPA2-Personal. - Enter your password and save your settings.
After this, the network will appear in the list of available ones, but with a note Hidden NetworkTo connect, click on it and enter the password (if you haven't saved it before).
⚠️ Attention: If you are connecting to a hidden network in a public place (such as a cafe), check with the staff for the exact SSID and encryption type. Incorrect settings can result in a connection to a rogue access point with a similar name.
How to find the SSID of a hidden network without accessing the router?
If you have a device (such as a smartphone) already connected to this network, look for its name in the Wi-Fi settings. Android: Settings → Wi-Fi → [tap on the network]On . iPhone: Settings → Wi-Fi → ["i" icon next to the network].
3. Entering a password through Windows Settings
An alternative way is to use the section ParametersIt is useful if the Wi-Fi icon in the tray is not displayed or does not respond to clicks.
Step-by-step instructions:
- Click Win + Ito open
Parameters. - Go to
Network and Internet → Wi-Fi. - Turn on the slider
Wi-Fi(if it is turned off). - In the section
Available networksselect your network and clickConnect. - Enter the password and confirm the connection.
If the network does not appear in the list, refresh it by clicking Refresh (circle arrow icon). If this doesn't help, check:
- 📡 Wi-Fi adapter: Make sure it is physically turned on (some laptops have a separate button or key combination, for example, Fn + F2).
- 🔧 Drivers: if the adapter is disabled in
Device Manager, update the driver viaSettings → Update & Security → Windows Update.
4. Connection via command line (CMD)
This method is useful for system administrators or if the Windows graphical interface is not working correctly. It also allows you to connect to networks with non-standard settings (for example, with 802.1X authentication).
Instructions:
- Open command line as administrator (Win + X →
Command Prompt (Administrator)). - View the list of available networks:
netsh wlan show networksFind your network name in the output (
SSID). - Connect to the network:
netsh wlan connect name="NETWORK_NAME"Replace
NETWORK_NAMEto the actual SSID. - If the network is password protected, save its profile first:
netsh wlan add profile filename="C:\path\to\file.xml"Where
xml file— a pre-prepared file with settings (can be exported from another PC).
To create a profile file manually, use the template:
<WLANProfile xmlns="http://www.microsoft.com/networking/WLAN/profile/v1"><name>NETWORK_NAME</name>
<SSIDConfig>
<SSID>
<name>NETWORK_NAME</name>
</SSID>
</SSIDConfig>
<connectionType>ESS</connectionType>
<MSM>
<security>
<authEncryption>
<authentication>WPA2PSK</authentication>
<encryption>AES</encryption>
<useOneX>false</useOneX>
</authEncryption>
<sharedKey>
<keyType>passPhrase</keyType>
<protected>false</protected>
<keyMaterial>YOUR_PASSWORD</keyMaterial>
</sharedKey>
</security>
</MSM>
</WLANProfile>
Save the code to a file with the extension .xml and use it in the command netsh.
⚠️ Attention: When connecting viaCMDThe password is transmitted in clear text. Make sure there are no strangers nearby who could see it on the screen. For increased security, usePowerShellwith the teamRead-Host -AsSecureString.
5. How to find a saved Wi-Fi password on Windows 10
If you've forgotten your password but your computer is already connected to the network, you can recover it through the system settings. This is useful, for example, when you need to connect a new device.
Method 1: via "Options"
- Open
Settings → Network and Internet → Wi-Fi. - Click
Managing known networksand select the desired network. - Click
Properties, then scroll to the sectionSecurity parameters. - Check the box
Show entered charactersto see the password.
Method 2: via command line
- Open
CMDon behalf of the administrator. - List saved networks:
netsh wlan show profiles - View the password for a specific network (replace
NETWORK_NAME):netsh wlan show profile name="NETWORK_NAME" key=clearThe password you are looking for will be in the line
Key content.
In Windows 10 version 2004 and later, passwords for saved networks are encrypted by default. You need administrator privileges to view them.
6. Troubleshooting Wi-Fi connection errors
If Windows 10 won't connect to the network despite the correct password, there could be a variety of reasons, from incorrect router settings to driver conflicts. Let's look at the most common errors and how to fix them.
| Error | Possible cause | Solution |
|---|---|---|
Unable to connect to this network |
Incorrect password, weak signal, incompatible encryption type | Check your password, reboot your router, change the encryption type to WPA2-PSK in the router settings |
Windows can't connect to Wi-Fi |
The Wi-Fi adapter is disabled or there is a driver conflict. | Plug the adapter in Device Manager or update the driver |
Limited connection (exclamation mark) |
DHCP or IP address issues | Perform in CMD:
|
| The network keeps disconnecting | Saving adapter power or interference from other devices | Disable power saving in the adapter properties or change the Wi-Fi channel in the router settings. |
If none of the methods helped, try:
- 🔄 Reset network:
Settings → Network & Internet → Status → Network reset. Attention: This will delete all saved Wi-Fi passwords! - 🛠️ Update Windows: Some connection issues are being fixed in the latest builds.
- 📞 Contact the provider: if the problem is on the Internet provider's side (for example, blocking by MAC address).
The Wi-Fi adapter is enabled in Device Manager.
The password was entered without typos (check the case)
The router has been rebooted (turn off the power for 30 seconds)
The router's SSID broadcast mode is enabled.
Adapter driver updated-->
7. Additional settings for a stable connection
To avoid Wi-Fi problems in the future, configure your adapter and router settings optimally.
On the Windows 10 side:
- 🔗 Network priorityIf you have multiple saved networks, Windows may connect to the wrong one. To change the priority, delete the unnecessary networks in
Managing known networks. - 🔋 Energy saving: disable it for the Wi-Fi adapter:
- Open
device Manager(Win + X). - Find your adapter in the section
Network adapters. - In the properties tab
Power managementuncheck the boxAllow the computer to turn off this device to save power.
- Open
On the router side:
- 📶 Wi-Fi channel: If the network is unstable, try changing the channel to a less busy one (for example, with
caron6or11). - 🔒 Encryption type: use
WPA2-PSKwith encryptionAES(settingWPA2/AESin the router control panel). - 📡 Signal strength: If your router supports it, enable the mode.
100%transmission power (in some models it is reduced by default). - Is the Wi-Fi adapter physically turned on (some laptops have a separate switch or key combination, for example, Fn + F2).
- Are the drivers for the adapter installed? Open
device Managerand check if there is an exclamation mark next to the network adapter. - Check if Wi-Fi works on other devices (like a smartphone). If not, the problem is with the router.
⚠️ Attention: Changing router settings may cause connection interruptions on other devices. After making changes, reconnect all devices to the network.
FAQ: Frequently asked questions about connecting to Wi-Fi on Windows 10
My computer can't see any Wi-Fi networks. What should I do?
Check:
If the adapter is disabled in the system, enable it using the command in CMD (from administrator):
netsh interface set interface "Wi-Fi" enable
Windows says "Saved" instead of "Connected." How do I fix it?
This error means the password was accepted, but the connection was not established. Try:
- Remove the network from known networks and reconnect.
- Check if it is enabled on your router DHCP (automatic assignment of IP addresses).
- Temporarily disable Windows Firewall (
Settings → Update & Security → Windows Security → Firewall & Network Protection).
Is it possible to connect to Wi-Fi without a password?
Yes, but only if:
- Net open (without encryption).
- You are using WPS (button on the router for quick connection).
- You have access to QR code with settings (some routers generate it for guest networks).
- Click the button WPS on the router (usually it is labeled or blinking).
- Within 2 minutes, select the network on your PC and wait for it to connect automatically.
To connect via WPS:
How do I connect to Wi-Fi if I forgot my password and can't access my router?
If your password is saved on another device (for example, a smartphone or a second PC), you can:
- 📱 On Android: use the app WiFi Password Viewer (root required) or look at the password in the configuration file (rooted devices only).
- 🍎 On iPhone: It is impossible to find out the password without jailbreak, but you can share it through
Settings → Wi-Fi → [tap on the network] → Password(Face ID/Touch ID verification required). - 💻 On another Windows PC: Use the command
netsh wlan show profile name="NETWORK_NAME" key=clear(see section 5).
If there is no access to the devices, the only option is to reset the router to factory settings (using the button Reset on the body) and configure it again.
Why does Windows 10 ask for a password every time I connect?
This happens if:
- The checkbox is unchecked
Connect automaticallywhen connecting for the first time. - Password saving is disabled in the network settings (for example, via group policy in corporate networks).
- The network profile is corrupted.
Solution:
- Remove the network from known networks and reconnect by checking the box.
Connect automatically. - Check your Group Policy settings (if you are on a domain):
gpedit.msc → Computer Configuration → Administrative Templates → Network → Windows Connection Manager