cmd查看已连接过的wifi密码
作者:myluzh 分类: NOTES 长度:377 阅读:914
0x01 查看单个wifi密码
netsh wlan show profiles #显示全部已连接过wifi名称
netsh wlan show profiles name="wifi名称" key=clear
0x02 查看全部wifi密码
for /f "skip=9 tokens=1,2 delims=:" %i in ('netsh wlan show profiles') do @echo %j | findstr -i -v echo | netsh wlan show profiles %j key=clear