i did get answer about this question, about 2 years ago:
Running bat file using Windows scheduler
but now i want to use the same command to create a task that will run every half an hour.
how can it be done?
thank you in advance

link|improve this question

forgot to say: i use windows 7 – bks Jul 4 '11 at 9:24
feedback

1 Answer

up vote 1 down vote accepted

You should use schtasks instead:

schtasks /create /sc minute /mo 30 /tn "Task runs Every 30 Minuts" /tr c:\PATH\TO\TASK.exe

http://technet.microsoft.com/en-us/library/cc725744%28WS.10%29.aspx#BKMK_minutes

link|improve this answer
ok i'll check it – bks Jul 4 '11 at 10:24
it worked, thank you – bks Jul 6 '11 at 13:11
Glad I could help. – cularis Jul 6 '11 at 13:12
feedback

Your Answer

 
or
required, but never shown

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