«

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

wifi wifi密码 cmd


正文到此结束
版权声明:若无特殊注明,本文皆为 Myluzh Blog 原创,转载请保留文章出处。
文章内容:https://itho.cn/notes/117.html
文章标题:《cmd查看已连接过的wifi密码