How to view WiFi's password or forget this network in Windows 8.1
Emily Wong
In Windows 8.1, when I right click a WiFi connection, nothing happens. In Windows 8, there is a menu and I can view its properties by clicking the "View Properties" menu item, and then I can see the password for that WiFi connection.
How to do the exact same thing in Windows 8.1? And also how do I tell the OS to forget certain WiFi connection?
5 Answers
- Open
Network and Sharing Center. - Click on your wireless connection in the window that opens.
- After that, click on button
Wireless properties. - Then open tab
Security.
I found this on YouTube and it worked for me.
- Hover mouse over Windows icon and right-click
- Open up "Command Prompt (Admin)". Click Yes for the prompt box that pops up.
Type the command line below:
netsh wlan show profile name="INSERT SSID HERE" key=clear
Note: if you don't know your SSID, you can list all Wi-Fi profiles you have connected in the past with following command:
netsh wlan show profileThe first version of the command may dump out tens of lines of output
(commonly between 30 and 40 lines).
If you want to see only the password (Key Content),
you can pipe the command through findstr Key.
Note that the K in Key must be capitalized.
Example command line will therefore look like:
netsh wlan show profile name="Sales Dept Network" key=clear | findstr KeyYou can leave out the "name=":
netsh wlan show profile "Sales Dept Network" key=clear | findstr Key 9 Command line (Manage wireless network profiles) or third party utilities are your options since Microsoft removed the Wireless Profile Manager.
It's not removed actually just do either one of the following:
First:
- It's been moved to the Modern PC settings. All the options are there
- Go to PC settings( To go PC settings hover your mouse to the right top or bottom corner then click on the Settings icon, there you'll see)
- Then click on Network
- Again click on Your WiFi name
- Give metro a chance
Second:
- Right click on the Wifi signal open "Open Network and sharing center"
- There you can see you're wifi name.. just click on it you'll get what you've asked.
To see the password for the network, as mentioned in the previous answer,just do the following;
- Right click command prompt and select to Run as administrator
- type the following
netsh wlan show hostednetwork setting=security
(This assumes you are running a hosted network on your system)
Revert if you need more help
1