Playnite Forums
Launching game with processor priority - Printable Version

+- Playnite Forums (https://playnite.link/forum)
+-- Forum: Playnite (https://playnite.link/forum/forum-1.html)
+--- Forum: General (https://playnite.link/forum/forum-2.html)
+--- Thread: Launching game with processor priority (/thread-624.html)



Launching game with processor priority - ownedbycats - 03-27-2021

In Windows, you can use 

start /PRIORITY "game.exe"

to start with a specific processor priority. I am not sure how to get this working with Playnite though. I attempted this and it did not work:

[Image: XjznacA.png] 

Any suggestions? Thank you


RE: Launching game with processor priority - Crow - 03-27-2021

start is a batch command, not an executable you can launch directly, therefore:

Executable: cmd.exe
Arguments: /c start /high notepad.exe


RE: Launching game with processor priority - ownedbycats - 03-28-2021

Thank you!