Low Priority Processes

kb1ghc

New Member
I have a few background programs, that arn't really important, and i'd like to set them to a low priority, but i want to know how do it so it stays at low on boot.
 

Lorand

<b>VIP Member</b>
Create a bat file that contains the line
Code:
cmd /c start /Low xxxxxx.exe
(the xxxxxx.exe is the name of the application) and put it in the folder of that application. The application will run in low priority if launched through this bat.
You can set different priority levels, here are the possible settings: Realtime, High, AboveNormal, Normal, BelowNormal, Low.
 
Top