这样也可以,只是不知长度是不是固定的- netsh wlan show profiles ChinaNet-NX08 key=clear |findstr /i /c:"名称 :" /c:"关键内容"
复制代码 最终这样了,- 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 | findstr -v "SSID" | findstr /I "名称 关键内容" && echo.
复制代码 CMD查看所有连接过的WIFI名字和密码 |