回复 21# wlishihua
改一下可以快捷方式
好像也可以四个一跳,后面的多少一跳以此类推来改
这里的1到4,4到8,8到253- @echo off
- call :n "C:\Users\Administrator\Desktop\Microsoft Edge.lnk" "C:\Users\Administrator\Desktop\MHTCGI\mhtcgi.exe" "C:\Users\Administrator\Desktop\Microsoft Edge.lnk"
- pause
- goto :eof
-
- :n
- set/a n+=1
- ipconfig|findstr /i "ipv4.*192\.168\.1\.%n%"&&start "" "%~1"&&goto :eof
- if %n%==4 shift
- if %n%==8 shift
- if %n%==253 shift
- if not "%n%"=="" goto :n
复制代码
|