stephenmbell
IS-IT--Management
I have a handful of scheduled tasks running on every windows xp machine in this segment of my network.
From time to time we have to re-image these machines and re-set them up. One of the things we have to do when we re-image is run a bat file to create all of these scheduled tasks.
Out of the 20 or so scheduled tasks created by this bat file, 3 of the tasks need to be manually edited -
we manually:
-Edit task
-Go To Schedule tab
-Click Advanced
-Under the Repeat Task - Change duration to Time and put 11:59PM in the time box
Is this possible to automate using the schtasks /create??
here is the "create" i currently use:
Thank you for any help
sb
From time to time we have to re-image these machines and re-set them up. One of the things we have to do when we re-image is run a bat file to create all of these scheduled tasks.
Out of the 20 or so scheduled tasks created by this bat file, 3 of the tasks need to be manually edited -
we manually:
-Edit task
-Go To Schedule tab
-Click Advanced
-Under the Repeat Task - Change duration to Time and put 11:59PM in the time box
Is this possible to automate using the schtasks /create??
here is the "create" i currently use:
Code:
SCHTASKS /Create /RU pos /RP pos /SC MINUTE /MO 30 /TN CheckAndRun /TR C:\POSapps\checkrun\check.bat /ST 05:30:00 /SD 10/06/2003
Thank you for any help
sb