- 帖子
- 3
- 积分
- 15
- 技术
- 0
- 捐助
- 0
- 注册时间
- 2019-8-29
|
2楼
发表于 2019-8-30 16:50
| 只看该作者
本帖最后由 刹那清风 于 2019-9-20 15:34 编辑
[已解决]代码如下:
@echo off
wmic sysdriver get caption /format:hform >>%tmp%\pz.txt
set var="A";"B";
echo;%var%|find /i "A" %tmp%\pz.txt >nul && goto 1||echo;----A未链接----
echo;%var%|find /i "B" %tmp%\pz.txt >nul && goto 2||echo;----B未链接----
exit
:1
start "" "%cd%\aa.exe"
ping -n 5 127.1>nul
del /f /q %tmp%\pz.txt
exit
:2
start "" "%cd%\bb.exe"
ping -n 5 127.1>nul
del /f /q %tmp%\pz.txt
exit |
|