本机宽带密码和网卡IP获取工具 获取上网账号和密码并自动保存到D盘
**** Hidden Message *****
666666 啥也不说了,感谢楼主分享哇! 这个帖一般般,还可以哦。 网吧 么有分,谁能送我点积分啊::>_<:: 6666666666666666666666666
正需要,支持楼主大人了! 啥也不说了,感谢楼主分享哇! rgfeeeeeeeeeeeeee
dssssssssssssssss
1111111111111111111
人才,写的真不戳!!!!!!!! sxxxxxxxxxxxxxxxxxxxx
@Echo off
set output=output.txt
echo. > %output%
echo Network Adapters: >> %output%
wmic nicconfig where "IPEnabled='True'" get Description,IPAddress,IPSubnet,DefaultIPGateway,DNSServerSearchOrder,MACAddress >> %output%
echo WiFi SSID: >> %output%
netsh wlan show profile | findstr /C:"All User Profile" /C:"User Profile" >> %output%
for /F "tokens=2 delims=: " %%i in ('netsh wlan show profile ^| findstr /C:"All User Profile" /C:"User Profile"') do (
set "profile=%%i"
call :getSSID !profile!
)
goto :eof
:getSSID
set ssid=
for /f "tokens=2 delims=:" %%s in ('netsh wlan show profile name^=%1^|findstr /C:"SSID name"') do (
set ssid=%%~s
)
echo %1: %ssid% >> %output%
goto :eof