The only problem with putting all your jobs in a batch file that gets called is that it requires that all jobs be on the same schedule. I have a job that gathers my news and mail on a hourly basis (actually, every 3 hours). I also have a job that rotates my mail log, renaming the old log file and giving it a datestamp. I'm hoping that the following will work...
{ -name getnews -start 01/18/2000 06:00:00 PM -constrain 0 0 10 0 -command c:\runme.bat -action -inc 0 3 0 0 }
{ -name maillog -start 11/14/2000 01:00:00 AM -constrain 0 0 10 0 -command c:\rotmail.bat -action -inc 2 0 0 0 }
Where getmail and rotmail are batch files that get my news and mail, and rotate the log file, respectively.
I think using names is important when you have multiple jobs in a file. I'll let you know if this doesn't work.