Scheduled Tasks start apps with priority.

  • Thread starter Thread starter Frank Rizzo
  • Start date Start date
F

Frank Rizzo

Hello,

Is there any way to configure an application that starts as a Scheduled
Task to start with a Low Priority? Normally, it starts with Normal
Priority.

Thanks.
 
You can use start command in a shell script something like;
start "" /low "some program"
start /?
for the syntax

--

Regards,

Dave Patrick ....Please no email replies - reply in newsgroup.
Microsoft Certified Professional
Microsoft MVP [Windows]
http://www.microsoft.com/protect

:
| Hello,
|
| Is there any way to configure an application that starts as a Scheduled
| Task to start with a Low Priority? Normally, it starts with Normal
| Priority.
|
| Thanks.
 
Dave said:
You can use start command in a shell script something like;
start "" /low "some program"
start /?
for the syntax

Thank you. This did the trick.
 
Back
Top