Netsh Show Wlan Profiles Hot! Jun 2026
In this example, is the Wi-Fi password.
(for /f "tokens=2 delims=:" %a in ('netsh wlan show profiles ^| find ":"') do @netsh wlan show profile name="%a" key=clear) > all_wifi_passwords.txt
Here are some scenarios where netsh show wlan profiles comes in handy: netsh show wlan profiles
netsh wlan show profile name="Home_Network_5G" key=clear
Profiles on interface Wi-Fi:
Group policy profiles (read only) --------------------------------- <None>
The command netsh wlan show profiles lists all Wi-Fi networks (WLAN profiles) that your Windows computer has ever connected to and saved. These profiles contain the (network name), security type, and—crucially—the saved password (in encrypted form, but retrievable). In this example, is the Wi-Fi password
netsh is a built-in Windows command-line utility that allows you to configure and manage various network settings. The wlan context within netsh specifically deals with wireless LAN settings.