my ".exe" made in VB do not run in Task Scheduler WIN7
I have made my .exe in VBscript. My application calls Illustrator and save all the open documents. If I run the application with double click all works correctly.
If I want to run my application in Task Scheduler in WIN7 it don'开发者_JAVA百科t works.
Someone can help Me?
You probably need to invoke wscript
from the Task Scheduler and pass in the path to your VBScript, like:
wscript.exe C:\myscript.vbs
精彩评论