Hi there
i wanted to run a .bat file in windows task schedualer, so i opened it, added a new task, browsed to the bat file, and... nothing happened. so i changed the timing to see if it'll run, and it didn't. next i right-clicked on the task and chose "run"- it didn't run. the file itself is only one line, basicly backups a folder to a another location. it runs fine when not in the schedualer.
what can be done?
thank you

link|improve this question

76% accept rate
2  
Doesn't seem like a programming question, your .bat file is running fine, just need to know how to use it in scheduler. Might be better asked on superuser.com – jsmith Oct 6 '09 at 17:09
1  
This is a question for Super User, not Stack Overflow. – Reinis I. Oct 6 '09 at 17:10
i see. thank you both – bks Oct 6 '09 at 17:27
feedback

closed as off topic by Michael Todd, Nick Dandoulakis, Jay Riggs, Marc Gravell Oct 7 '09 at 7:05

Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.

1 Answer

up vote 0 down vote accepted

You should not give batch file directly as a task. Instead you should use

"C:\Windows\system32\cmd.exe" /C <completepathtobatchfile> <argstobatchfileifany>

the complete path to cmd.exe may vary in your case depending on which drive you installed OS and which version you are using.

link|improve this answer
ok then. what does the /C do, btw? thank you for your help – bks Oct 6 '09 at 17:28
/C will make cmd.exe to exit after executing the specified command. Here it is your batch file. Else, cmd.exe will not exit. – Aviator Oct 6 '09 at 17:34
it wont run. in "run" text field i wrote: cmd.exe /C k:\backup.bat in the "start in" i wrote: k:\ and the task will not run. – bks Oct 6 '09 at 17:44
Try giving full path to cmd.exe.See this for step-by-step details. iopus.com/guides/winscheduler.htm – Aviator Oct 6 '09 at 17:51
feedback

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