Packaging VBScript Scripts
Select "cscript.exe" or "wscript.exe" as a process name, including no path, arguments or quotes. Unlike KiXtart and AutoIt, you cannot simply include the process executables in the Additional Files section of the Script Packager. Execution of VBS scripts requires installation of the Windows Scripting Host (which itself may be scripted). For command line installation details, see this article at AppDeploy.com.
CSCRIPT Arguments *
//B Batch mode: Suppresses script errors and prompts from displaying
//D Enable Active Debugging
//E:engine Use engine for executing script
//H:CScript Changes the default script host to CScript.exe
//H:WScript Changes the default script host to WScript.exe (default)
//I Interactive mode (default, opposite of //B)
//Job:xxxx Execute a WSF job
//Logo Display logo (default)
//Nologo Prevent logo display: No banner will be shown at execution time
//S Save current command line options for this user
//T:nn Time out in seconds: Maximum time a script is permitted to run
//X Execute script in debugger
//U Use Unicode for redirected I/O from the console
* Type cscript.exe /? at the command prompt to verify the arguments available to the version of the VBScript interpreter installed on your system.