自动关闭并重新启动程序

自动关闭并重新启动程序

我正在寻找一种基于计时器自动打开和关闭程序的方法。

我正在寻找的内容如下:

  1. 开放程序
  2. 运行程序 5 分钟
  3. 关闭程序
  4. 重复上述操作

答案1

使用该工具创建计划任务task scheduler。您可以指定开始时间(每 5 分钟一次),并将“如果任务运行时间超过则停止”框设置为 5 分钟!

在计划任务上创建如下触发器:<code>触发器</code>来启动和停止任务。

答案2

你可以使用免费程序执行此操作自动热键

本质上,你需要创建一个循环,包括打开程序、设置一个计时器X分钟,然后关闭程序。

您需要查看以下自动热键命令:

  1. 环形
  2. 设置定时器或者睡觉
  3. 跑步
  4. 赢关闭

您还可以使用 SuperUser 找到有用的代码片段自动热键标签。

以下是一个非常简单的 autohotkey 脚本,您只需进行少量更改即可运行所需的功能。以分号开头的行是注释,可以安全删除:

; Below line keeps this script running until you close it
#Persistent

Loop 
{
    ; Edit the below line to add your program
    Run, C:\Program Files (x86)\Example Program\Example_Program.exe

    ;300000 on the line below is 5 minutes
    Sleep, 10000 

    ; Edit the below line to add your program's "Window Title"
    ; Note this is not the same as the program's name
    WinClose, Example Program
}

相关内容