深蓝幻灭 当前离线
列兵
@echo off for /f "delims=" %%a in ('wmic nic get NetConnectionID^,MACAddress /value^|find "="') do set "%%a" echo;%MACAddress% echo;%NetConnectionID% pause复制代码
went 当前离线
少校
@echo off & cd /d "%~dp0" set "mac=68:07:15:FD:43:D7" for /f "delims=" %%a in ('wmic nic where "MACAddress="%mac%"" get NetConnectionID^,MACAddress /Value^|find "="') do set "%%a" echo;%MACAddress% echo;%NetConnectionID% pause&exit复制代码
评分人数
TOP