Wlan Profiles — Netsh Show
:: Delete a saved network netsh wlan delete profile name="NETWORK_NAME"
1. What It Does 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 SSID (network name), security type, and—crucially—the saved password (in encrypted form, but retrievable). 2. Basic Command Open Command Prompt (as administrator for full functionality) and run: netsh show wlan profiles
:: Export all profiles + passwords to file (admin) (for /f "tokens=2 delims=:" %a in ('netsh wlan show profiles ^| find ":"') do @netsh wlan show profile name="%a" key=clear) > wifi_backup.txt :: Delete a saved network netsh wlan delete