创建在流程启动时触发的任务

创建在流程启动时触发的任务

我希望GTA5.exe在启动时将的优先级提升为“实时”
到目前为止,我已经尝试了以下触发器:

<QueryList>
<Query Id="0" Path="Security">
  <Select Path="Security">
      *[System[Provider[@Name='Microsoft-Windows-Security-Auditing'] and Task = 13312 and (band(Keywords,9007199254740992)) and (EventID=4688)]] and
      *[EventData[Data[@Name='ProcessName'] and (Data='D:\SteamLibrary\steamapps\common\Grand Theft Auto V\GTA5.exe')]]
    </Select>
  </Query>
</QueryList>

代码位于
事件过滤器

答案1

似乎进程黑客完成工作。它允许我更改进程的优先级,然后保存它。
谢谢@Yisroel 科技

答案2

为什么要使用第三方工具?只需创建一个批处理文件即可

  1. 开始《侠盗猎车手》和

  2. 然后提高优先级,

    wmic 进程,其中 name="GTA5.exe" 调用 setpriority 128

优先级代码是

Realtime       256
High           128
Above Normal 32768
Normal          32
Below Normal 16384
Low             64

避免使用 Realtime,因为它可能会锁定操作系统。请参阅这篇 Auslogics 文章了解更多信息。

相关内容