I am starting a long, memory and CPU-intensive run. I know how to change the process priority manually from the task manager.

Is there a way that I can run it at low priority from a .bat file, since that is how I start it?

link|improve this question
feedback

1 Answer

up vote 4 down vote accepted

Start it with the Start /low command and parameter, e g Start /low c:\foo.exe.

link|improve this answer
Note that this starts it in a new window if the command itself is a .bat. The window doesn't close when the command done. That works fine for me, but could be annoying. – Brian Carlton May 19 '11 at 17:55
1  
@Brian: You can start cmd /c foo.bat in that case. – grawity May 19 '11 at 18:01
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.