Setting Windows Batch Script Priority

How to control priority of windows batch scripts:

example:
This script runs hivm at low priority. After hivm’s execution completes, it starts MS Word up at low priority.
If you don’t put in the Wait switch, it will spawn new cmd windows to run everything in the batch script simultaneously.

#make the library
start /WAIT /LOW hivm.exe

#open Word
start /WAIT /LOW winword.exe

http://www.robvanderwoude.com/index.html

(haven’t tried this add on.)
http://www.beyondlogic.org/solutions/processutil/processutil.htm

Leave a Reply