Scope
- JobScheduler supports VBScript for implementation of jobs:
- The support for VBScript includes Shell jobs and API jobs:.
- VBScript jobs can use the objects and methods of the JobScheduler API.
- Some minor differences exist between VBScript jobs for Master and Agents, see Compatibility between VBScript and ScriptControl:VBScript.
- VBScript jobs are configured with
<script language="VBScript">
for execution with a Master<script language="ScriptControl:VBScript">
for execution with Agents.
Background
- VBScript is a scripting language that is not developed any further.by Microsoft.
- The language is restricted to use of 32bit architectures:
- In 64Bit environments VBScript can be executed from the command line by WoW64.
- JobScheduler in a 64Bit environment can execute VBScript scripts.
- However, VBScript is restricted to use of the 32Bit registry and can load classes that are registered for a 32Bit environment exlusively.
- In future releases JobScheduler Master will become available for 64Bit environments only. JobScheduler Agents can be executed with 32Bit environments and 64Bit environments, the architecture in use is determined by the Java Virtual Machine (JVM) in use.
- Agents that are running with a JVM 32Bit (which is feasible within a 64Bit server architecture) integrate VBScript via the ScriptControl.
- ScriptControl is available for 32Bit only.
- The intoduction of VBScript support for Agents offers a migration path for users of VBScript jobs:
- Jobs can be migrated from execution of a Master to execution by Agents.
- Migration requires
- to use the
<script language="ScriptControl:VBScript">
attribute for jobs. - to assign a process class to jobs or job chains that is assigned an Agent running with a 32Bit JVM.
- to adjust the VBScript syntax when using properties of the JobScheduler API.
- to use the
Feature Availability
FEATURE AVAILABILITY STARTING FROM RELEASE 1.10.5
Examples
Example: Simple VBScript Job
Example 1: A simple VBScript job with some scripting similar to shell jobs might look like this:
Example: VBScript Job for order API methods
Example 1: A simple VBScript job with some scripting similar to shell jobs might look like this:
Example: VBScript Job
Example 1: A simple VBScript job with some scripting similar to shell jobs might look like this:
<?xml version="1.0" encoding="ISO-8859-1"?> <job process_class="my_Agent"> <script language="scriptcontrol:vbscript"> <![CDATA[ Function spooler_process() spooler_log.info( spooler_job.name() ) spooler_log.info( ".. merge parameters" ) Set parameters = spooler_task.params() parameters.merge( spooler_task.order().params() ) spooler_log.info( "parameter name1=" & parameters.value( "name1" ) ) spooler_log.info( "parameter name2=" & parameters.value( "name2" ) ) spooler_process = false End Function ]]> </script> <run_time /> </job>
Compatibility between VBScript and ScriptControl:VBScript
- ScriptControl