标签: windows command task scheduler
如果特定程序已经发布,我需要运行.vbs程序。我尝试使用任务调度程序来完成它,但它不起作用,因为我的应用程序没有写任何事件来触发对特定事件的操作。
答案 0 :(得分:0)
您可以使用Autoitscript。只需创建一个这样的循环:
While 1 If ProcessExists('yourexe.exe') Then Shellexecute(yourVBS...) ... Sleep(500) WEnd