Scope
- JobScheduler is evolving towards an architecture that allows more flexible use with Agents.
- Find an overview of supported languages for jobs that make use of COM components.
Language Overview
Master | Agent | |||
---|---|---|---|---|
Language | Architecture | Language | Architecture | Comments |
VBScript | JVM 64bit + Master 64bit
| ScriptControl:VBScript | No support for JVM 64bit + Agent |
|
JVM 32bit + Master 32bit
| JVM 32bit + Agent
|
| ||
PowerShell | JVM 64bit + Agent
|
| ||
JVM 32bit + Agent
| ||||
dotnet (.NET) | same architectures as PowerShell |
|
Examples
- Examples are available for download from scripting.zip
- Unzip the archive in the
./config/live
folder of your JobScheduler Master, a sub-directoryscripting
will be created for job-related objects.
COM component for example jobs
- From the attached archive scripting.zip register the COM component
ComComponent.dll
that implements a sample class. The .dll has been compiled using the AnyCPU model and has to be registered by the user. - Register the COM component for your respective architecture. The path to the .NET Framework might be different for your environment:
- 32bit
C:\Windows\Microsoft.NET\Framework\v4.0.30319\regasm.exe ComComponent.dll /codebase /tlb /nologo
- 64bit
C:\Windows\Microsoft.NET\Framework64\v4.0.30319\regasm.exe ComComponent.dll /codebase /tlb /nologo
- 32bit
- To later on remove the registration use
regasm.exe ComComponent.dll /u
VBScript jobs calling COM components
VBScript job for Master
- This example works for a JobScheduler Master 32bit and 64bit
- The above COM component
ComComponent.dll
has to be registered for the respective architecture
VBScript Job for Agent
- This example works for a 32bit Agent
- The above COM component
ComComponent.dll
has to be registered for the 32bit architecture - Basically the job script is the same as for the Master, consider use of the language
scriptcontrol:vbscript
and the assignment of a process class that points to an Agent.
PowerShell jobs calling COM components
PowerShell Job for Agent
- This example works for Agents with a JVM 32bit and 64bit.
- The above COM component
ComComponent.dll
has to be registered for the respective architecture. - For details on the use of the JobScheduler API see PowerShell Jobs.