Wi-Fi passwords
netsh wlan show profiles
netsh wlan show profile name="Profilename" key=clearforeach($profil in (netsh wlan show profiles | Select-String ':')){foreach($line in (netsh wlan show profiles name=($profil.toString().split(':')[1].trim()) key=clear)){$line+';'}};Last updated
Was this helpful?