- @echo off
- ping 127.0.0.1 -n 18 >nul
- set n="%computername%"
- if %n%=="001" goto 001
- if %n%=="002" goto 002
- if %n%=="003" goto 003
- if %n%=="004" goto 004
- :001
- start C:\QJ\001.exe
- goto end
- :002
- start C:\QJ\002.exe
- goto end
- :003
- start C:\QJ\003.exe
- goto end
- :004
- start C:\QJ\004.exe
复制代码 上述,是根据电脑名字来执行不同的命令,那能不能修改成根据Mac地址来执行不同的命令呢,也就是把电脑名字变成Mac地址 (Mac地址是现成有,不需要代码再查找出来)。求大神帮忙改改 |