How can I tell Windows to always start certain binaries with low priority?

12

7

I want to demote the priority of a number of processes that are auto-started on my corporate XP machine. Is there a way that I can tell WinXP to always start a binary with low priority?

Ross Rogers

Posted 2009-12-14T17:46:09.530

Reputation: 3 025

same question for windows7: https://superuser.com/q/102735/177522

– jan-glx – 2017-12-07T15:57:03.140

Answers

23

Use Prio. It allows you to save your preferences for processes so they will launch with that priority the next time.

enter image description here

Prio is free for personal use.

If you don't want to install additional software, you can make batch scripts which open the specified executable via the start command. The start command takes switches which specify the priority to start the process with.

The priority switches are the same as the priorities available through task manager:

/LOW
/NORMAL
/HIGH
/REALTIME
/ABOVENORMAL
/BELOWNORMAL

Example:

start /low cmd.exe

This would start a cmd.exe instance with low priority.

John T

Posted 2009-12-14T17:46:09.530

Reputation: 149 037