Myluzh Blog

Strive to become a dream architect.

cmd查看已连接过的wifi密码

发布时间: 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

发表评论