运行另一个.bat文件所需的批处理文件状态

时间:2016-07-04 04:59:13

标签: batch-file batch-processing

我有一些要求通过检查早期的.bat脚本是否仍在运行或完成来启动批处理脚本。无论如何从任务列表中找到该进程,因为它只列出.exe文件和其他应用程序,但不列出.bat文件。有人可以用任何其他可行的选项(如果有的话)帮助我。

对此的任何帮助都将受到高度赞赏。

谢谢你,Saikiran

1 个答案:

答案 0 :(得分:0)

wmic process where commandline='C:\\Windows\\system32\\cmd.exe /c ""C:\\Users\\David Candy\\Desktop\\test.bat" "' get commandline  

使用find进行解析。

使用wmic process get commandline列出批处理文件的命令行。