hackhyl

首先[win+r]快捷键打开运行,输入cmd。或点击左下角win-运行-cmd

 

1.netsh wlan show profiles //列出所有的ap名称

2.netsh wlan show profiles ap名 key=clear

*命令中wlan就是网卡

*AP就是无线网

可配合for循环遍历获取所有连接过的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

分类:

技术点:

相关文章:

  • 2021-10-25
  • 2021-11-14
  • 2021-11-13
  • 2021-09-06
  • 2021-07-07
  • 2021-06-16
  • 2021-04-15
猜你喜欢
  • 2022-01-13
  • 2021-12-01
  • 2021-11-13
  • 2021-12-23
  • 2021-07-17
  • 2021-09-25
相关资源
相似解决方案