Using Schtasks command i create a job.

schtasks /create /sc minute /mo 20 /tn "My App" /tr c:\run.bat

it created successfully and run also.

Inside the run.bat file file i write this code :

dir > sctask.txt

When i double click on run.bat file it create the sctask.txt file and all dir name of that folder into sctask.txt.

But when run.bat file excuted by Schtasks it is not create sctask.txt but it run the run.bat file

link|improve this question

20% accept rate
feedback

1 Answer

Probably schtasks runs bat file from other directory. Try to add cd "%~dp0" to the start of the file.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.