Always run a program with low priority

C

cranberry girl

Is it possible to configure a program so that it defaults to running in low
priority rather than normal?

I know you can set the priority once a program is started by opening the
task manager, go to processes, right click on the one I want, and setting
the priority, but I'd like to be able to tell XP to always run a particular
program in low priority rather than having to keep setting it every time its
run.

Thanks !
 
T

Torgeir Bakken \(MVP\)

cranberry said:
Thanks for that Torgeir; much appreciated

I've created a .bat file (just a normal text file with .bat at the
end of the file name instead of .txt) with the following lines:

cd "C:\Program Files\GreedyApp"
%comspec% /c start /low greedyapp.exe

and it works perfectly :)

Thanks

Your welcome.

Note that when doing this in a batch file, you don't need the
%comspec% /c part (as the batch file will run under %comspec%).

So this will also work in your batch file:

cd /D "%ProgramFiles%\GreedyApp"
start /low greedyapp.exe
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top