|
VBScript.Begin..End
|
|
| · | Surround all VBScript commands with "VBScript.Begin" and "VBScript.End".
|
| · | Use SetupBatcher variables to pass parameters (input) to VBScript commands.
|
| · | To get parameters (output, result) from a VBscript section, use VBscript commands (see Scripting.FileSystemObject) to write the parameters to a file, then use the SetupBatcher FileValue function to read from the file.
|
| · | All VBScript commands are executed on the local machine.
|
| · | It is not possible to insert comments by putting two slashes (//) in front of the comment text inside a VBScript.Begin..End statement. Instead, use a single quote (') like in VBScript.
|
| · | Unlike other SetupBatcher commands - if an error occurs in a script and the script is restarted - the whole script within the current VBScript.Begin..End structure will be executed from the beginning.
|
| · | SetupBatcher automatically inserts "On Error resume next" in scripts to trap errors. Do not try to add your own error handling.
|
| · | JScript is currently not supported.
|