最新消息: USBMI致力于为网友们分享Windows、安卓、IOS等主流手机系统相关的资讯以及评测、同时提供相关教程、应用、软件下载等服务。

windows系统bat批处理 查看当前电脑连接过的wifi名字和wifi密码

业界 admin 4浏览 0评论

方法一:简单粗暴
直接上脚本

@echo off

chcp 437 >nul

for /f "tokens=1* delims=:" %%i in ('netsh wlan show profiles ^| findstr /c:"All User Profile"') do (

    call :GetPass %%j

)

pause

goto :eof

:GetPass

echo WiFi : %*

for /f "delims=" %%a in ('netsh wlan show profile name^="%*" key^=clear ^| findstr /c:"Key Content"') do (

    echo %%a

)

goto :eof

搞成bat文件 直接运行
效果下图
wifi名 密码

方法二:繁琐命令

netsh wlan show profiles

输入命令可以直接看到所有连接过的wifi名称

输入命令查看一个wifi的密码和其他信息

netsh wlan show profiles name="上图wifi的名字" key=clear

方法一:简单粗暴
直接上脚本

@echo off

chcp 437 >nul

for /f "tokens=1* delims=:" %%i in ('netsh wlan show profiles ^| findstr /c:"All User Profile"') do (

    call :GetPass %%j

)

pause

goto :eof

:GetPass

echo WiFi : %*

for /f "delims=" %%a in ('netsh wlan show profile name^="%*" key^=clear ^| findstr /c:"Key Content"') do (

    echo %%a

)

goto :eof

搞成bat文件 直接运行
效果下图
wifi名 密码

方法二:繁琐命令

netsh wlan show profiles

输入命令可以直接看到所有连接过的wifi名称

输入命令查看一个wifi的密码和其他信息

netsh wlan show profiles name="上图wifi的名字" key=clear

与本文相关的文章

发布评论

评论列表 (0)

  1. 暂无评论