Guest jeff Posted October 23, 2007 Posted October 23, 2007 I'm looking for a way to start a scheduled task based on the existance of a file or (condition) is this possible...scripting...third party tool..etc...?? Advice, suggestions, example....much appreciated... Thanks
Guest Pegasus \(MVP\) Posted October 23, 2007 Posted October 23, 2007 Re: Conditional Tak Scheduling "jeff" <jeff@discussions.microsoft.com> wrote in message news:48185B32-2B32-4158-9A78-D5D61AFDC196@microsoft.com... > I'm looking for a way to start a scheduled task based on the existance of > a > file or (condition) > > is this possible...scripting...third party tool..etc...?? > > Advice, suggestions, example....much appreciated... > > Thanks You don't need a third party tool. Simply embed your command in a batch file like so: @echo off if exist c:\Semaphore.txt d:\tools\MyTask.exe
Guest jeff Posted October 24, 2007 Posted October 24, 2007 Re: Conditional Tak Scheduling THX......too easy...! "Pegasus (MVP)" wrote: > > "jeff" <jeff@discussions.microsoft.com> wrote in message > news:48185B32-2B32-4158-9A78-D5D61AFDC196@microsoft.com... > > I'm looking for a way to start a scheduled task based on the existance of > > a > > file or (condition) > > > > is this possible...scripting...third party tool..etc...?? > > > > Advice, suggestions, example....much appreciated... > > > > Thanks > > You don't need a third party tool. Simply embed your > command in a batch file like so: > > @echo off > if exist c:\Semaphore.txt d:\tools\MyTask.exe > > >
Recommended Posts