Previous Topic

Next Topic

Book Contents

Book Index

MOVEit-specific Functions and Subroutines

The Custom Scripts feature is available in MOVEit Automation Enterprise.

MOVEit Automation custom scripts use Microsoft VBScript. In addition to the basic functions provided by that environment, MOVEit Automation also makes available several application-specific functions.

Functions and Subroutines in Alphabetical Order

For details, see below.

Functions and Subroutines - Details

Result = MIStartTask("ShowMyID", "ID is: "&strID)

Example 2: A task called SendSummaryFile is started with two task parameters computed from within the script: ID and CheckNum.

blnResult = MIStartTask("SendSummaryFile", "ID=" & strID & "|CheckNum=" & intCheckNum)

Returns 0 if the task was started. Note: the task will probably still be running when this function returns; a 0 return code does not mean that the task will successfully run to completion.