@echo off
tasklist|find /i /c "explorer.exe" > c:\1.txt
for /f "tokens=1" %%i in (c:\1.txt) do (
set a=%%i
if %a% EQU 1 goto no
cmd /c setup1.exe
:no
cmd /c setup2.exe
检测进程里explorer.exe个数是否正常
就是运行不起来
不知道什么原因
请大家帮帮我
tasklist|find /i /c "explorer.exe" > c:\1.txt
for /f "tokens=1" %%i in (c:\1.txt) do (
set a=%%i
if %a% EQU 1 goto no
cmd /c setup1.exe
:no
cmd /c setup2.exe
检测进程里explorer.exe个数是否正常
就是运行不起来
不知道什么原因
请大家帮帮我
