Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • You can use VBScript and make use of the JobScheduler API in your scripts. The API provides objects and methods to control jobs, start other jobs or orders etc.
    • Such jobs can only be executed with the JobScheduler Master and would look like this:
    • <job  stop_on_error="no">
          <script  language="vbscript">
              <![CDATA[
      Function spooler_process()
         spooler_log.info( "running VBscript job" )
         return    spooler_process=false
      End Function 
              ]]>
          </script> 
          <run_time />
      </job>

    • This job can be executed with the JobScheduler Master only, it is not supported for use with JobScheduler Agents.

...