Jump to content

Conditional Tak Scheduling


Recommended Posts

Posted

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

  • Replies 2
  • Created
  • Last Reply
Guest Pegasus \(MVP\)
Posted

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

Posted

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

>

>

>


×
×
  • Create New...