xiykj

netsh命令查询本机所有连接的WiFi密码,通过 netsh wlan show profiles 命令查询所有连接过的WiFi名称:

 

 再通过 netsh wlan show profiles wlanname key=clear 命令来查看某个WiFi的密码,如下:

 

 还可以通过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 | more

 

分类:

技术点:

相关文章:

  • 2021-05-17
  • 2021-11-16
  • 2021-12-19
  • 2021-10-18
  • 2021-12-01
猜你喜欢
  • 2021-11-13
  • 2021-08-27
  • 2021-10-25
  • 2021-12-26
  • 2021-12-23
  • 2021-12-01
相关资源
相似解决方案