2021-1-24 myluzh
NOTE
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
阅读全文>>
标签: wifi wifi密码 cmd
评论(0)
(629)