Windows 7:特定程序启动时如何运行bat?


2

目前我正在使用一个启动程序的蝙蝠。但我希望在程序启动时蝙蝠自动运行。

我确实调查了任务调度程序,但似乎缺少此选项。


目前看来,你的问题不是很清楚。您可以编写一个批处理脚本,除其他外,启动一个特定的程序,但我想这不是你想到的。请澄清您要解决的问题。
Larssend 2015年

我不想通过蝙蝠启动我的应用程序。我想在我的应用程序启动时启动.bat。例如:当Chrome浏览器启动时,它将启动蝙蝠。
丽莎2015年

Answers:


0

这可能基于您发现Chrome在PC上运行时想要启动批处理文件的注释。

ECHO OFF
TASKLIST | FIND /I "Chrome.exe"
IF NOT %ERRORLEVEL%==0 EXIT
CALL "C:\Batch\Batchfile.bat"
EXIT

我不确定这里的部分是批量启动时,如何告诉任务列表进程不再运行以继续启动它。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.