在批处理文件中以不同的亲和力启动 audiodg.exe

在批处理文件中以不同的亲和力启动 audiodg.exe

我尝试将其设置为“高”,但没有成功:

wmic process where (name like="audiodg.exe") CALL setpriority "high"

我能找到的唯一可以设置亲和力的命令是:

start /affinity 1 program.exe

问题是我无法终止旧的“audiodg.exe”并启动一个新的,即使在调用之间有等待时间。我不知道我做错了什么。这是我当前的代码:

wmic process where name="audiodg.exe" CALL terminate
start /affinity 1 audiodg.exe
wmic process where name="audiodg.exe" CALL setpriority "above normal"
pause

答案1

与此无关,但我自己遇到了这种需求,并且找到了一个可以自动执行此操作的工具,以防您可以使用单独的工具,即 Bitsum 的 Process Lasso:https://bitsum.com/

它可以让您audiodg.exe实时设置亲和力/优先级,从而引出此视频中的工具:https://www.youtube.com/watch?v=71HrZfR_Fro&list=WL

相关内容