Facing an issue in running “netsh wlan show profiles” command

netshwireless-networking

Now I want to retrieve password of an old WiFi connection but when I run netsh wlan show profile command it shows

There is no such wireless interface on the system

I am able to connect to other WiFi network, I don't know what the problem is. Please help me to sort it out.

Best Answer

I am not sure why did you try to use netsh wlan show profile, but I think the easiest way would be following 2 steps.

  1. List all wireless network profiles: netsh wlan show profiles (note s at the end of profiles).

  2. Show key for specific profile : netsh wlan show profile name="Profile_Name" key=clear (this time it's profile without s).

See this article for more details.

Related Question