adTempus API
ArcanaDevelopment.adTempus.Client Namespace / ProgramExecutionTask Class / BatchScript Property


In This Topic
    BatchScript Property
    In This Topic
    Gets or sets the stored batch file to execute.
    Syntax
    'Declaration
     
    
    <CanBeNullAttribute()>
    Public Property BatchScript As Script
    [CanBeNull()]
    public Script BatchScript {get; set;}
    [CanBeNull()]
    public:
    property Script^ BatchScript {
       Script^ get();
       void set (    Script^ value);
    }
    Remarks

    Use this setting if you want to have adTempus run a batch file that is stored in adTempus (and editable through the Script Editor in the user interface). To use this option create a Script with the Script.ScriptLanguage set to "Batch".

    At execution, the script content will be written to a temporary file and executed as a batch file.

    If BatchScript is specified, the ExecutionTarget is ignored.

    See Also