I am getting the 800A0414 error in lines 7 and 12 of this script:
Module Module1 Dim p Sub Main() CreateObject(\"Wscript.Shell\").Run(\"progr
When you enclose a procedure's argument list in parentheses, you must use the Call keyword:
Call CreateObject("WScript.Shell").Run("program.bat", 0, True)
If you omit the Call keyword, you must also drop parentheses:
Call
CreateObject("WScript.Shell").Run "program.bat", 0, True