The batch file I schedule to run does not work with the /every switch.

John Savill

March 4, 1999

1 Min Read
ITPro Today logo in a gray background | ITPro Today

A. A. You may find that if you submit a batch file with out the /every switch it works fine, e.g.

at 22:00 /interactive command.bat

however if you try

at 23:00 /interactive /every:M,T,W,Th,F command.bat

it fails. To correct this add cmd /c "", e.g.

at 23:00 /interactive /every: M,T,W,Th,F cmd /c "command.bat"

About the Author

Sign up for the ITPro Today newsletter
Stay on top of the IT universe with commentary, news analysis, how-to's, and tips delivered to your inbox daily.

You May Also Like