How to view WiFi's password or forget this network in Windows 8.1
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?
Solution 1:
- 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
.
Solution 2:
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 profile
The 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 Key
You can leave out the "name=
":
netsh wlan show profile "Sales Dept Network" key=clear | findstr Key