Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

command powershell show wifi password

netsh wlan show profile name="NETWORK" key=clear
Comment

see wifi passwords with powershell

(netsh wlan show profiles) | Select-String ":(.+)$" | %{$name=$_.Matches.Groups[1].Value.Trim(); $_} | %{(netsh wlan show profile name="$name" key=clear)}  | Select-String "Key ContentW+:(.+)$" | %{$pass=$_.Matches.Groups[1].Value.Trim(); $_} | %{[PSCustomObject]@{ PROFILE_NAME=$name;PASSWORD=$pass }} | Format-Table -AutoSize
Comment

command powershell show wifi password

netsh wlan show profiles
Comment

PREVIOUS NEXT
Code Example
Shell :: keep sudo on 
Shell :: ubuntu 20.04 openvpn client 
Shell :: git command to create a branch 
Shell :: bash get file name 
Shell :: bash remove first character 
Shell :: how to install ant in linux 
Shell :: how to remove a file from commit 
Shell :: ping command not found 
Shell :: zsh: command not found: rvm 
Shell :: ubuntu last logs 
Shell :: find postgres data directory and installation path 
Shell :: pom extract version linux 
Shell :: ngrok command 
Shell :: terminator default terminal 
Shell :: linux view kernel version 
Shell :: git fetch specific branch 
Shell :: gcloud disable interactive prompts 
Shell :: firefox hide password warning 
Shell :: Create and mount the FAT & ext4 filesystems 
Shell :: git rebase develop into feature 
Shell :: screen rotation in linux 
Shell :: how to check temperature of cpu linux 
Shell :: find gradle version 
Shell :: flutter doctor android licenses exception in thread main java.lang.noclassdeffounderror 
Shell :: npm install globally 
Shell :: ubuntu install blender 
Shell :: ffmpeg convert directory 
Shell :: pip uninstall all from env 
Shell :: branch on carry clear 
Shell :: why gitignore not working 
ADD CONTENT
Topic
Content
Source link
Name
7+7 =