According to the Microsoft official website, see the link you can change the execution priority of the processes.
You can see these two examples with the wmic commands:
1 2 | wmic process where name="calc.exe" CALL setpriority 32768 wmic process where name="calc.exe" CALL setpriority "above normal" |