I have a program named RobloxPlayerBeta.exe
which is already running, and must be launched with a specific priority.
Is it possible from a batch script to change the priority of that running executable? and if so, how?
I have a program named RobloxPlayerBeta.exe
which is already running, and must be launched with a specific priority.
Is it possible from a batch script to change the priority of that running executable? and if so, how?
wmic process where name="Notepad.exe" call setpriority "Realtime"
Possible levels are Realtime , High, Above normal , Normal , Below normal, Low. You can use also numeric values.