我已经成功地保存了一个批处理文件,直到一个过程结束。但是如何在进程开始之前保存批处理文件?
我正在使用以下代码:
@echo off
set process_1="calc.exe"
set process_2="mmc.exe"
set ignore_result=INFO:
set no_ignore=mmc.exe
:1
for /f "usebackq" %%M in (`tasklist /nh /fi "imagename eq %process_1%"`) do if not %%M==%ignore_result% goto 1
:2
for /f "usebackq" %%N in (`tasklist /nh /fi "imagename eq %process_2%"`) do if not %%N==%no_ignore% goto 2
echo Stuff finished.......
当程序未运行时,我得到的只是“信息:没有以指定条件运行的任务”
提前致谢
小号