I have created a vbs file that calls a batch file which works perfectly when run manually. When I run the same vbs script from the scheduled tasks, however, the vbs completes without error but it seems the batch file is not called because none of the taks it is responsible for are done.
I have made sure that the scheduled task runs under my administrator account. I have had quite a lot of experience running this same taks on an older server but I have recently migrated to a new 2008 R2 from 2003.
Here is the line that does not execute:
wshell.run "%comspec% /c ""C:\My Scripts\ForAdministration\AddSitesScripts\AddSite.bat"" " & DomainName & " " & WebsiteID & " " & DomainName20 & " " & Path & " " & HasStats & " " & NewAppPool & " " & 1 & " " & 1 & " " & 1, 0, True
I log all of the variables to a text file and they are fine. As i said this runs fine when triggered manually.
Thanks for your help!