Get external tools
Description
Section titled “Description”Gets a list of external tools.
Syntax
Section titled “Syntax”GetExternalTools() as ArrayList
Parameters
Section titled “Parameters”None
Return value
Section titled “Return value”The function returns an array of external tools. Each tool (tool) in the array is a joined line with the character defined with Set splitter.
- tool.ID
- tool.Name
- tool.Path
- tool.Arguments
Example
Section titled “Example”VBScript
Set oCMS = CreateObject("CapaInstaller.SDK")Set aUnit = CreateObject("System.Collections.ArrayList")wscript.echo oCMS.SetDefaultManagementPoint("1")Set aUnit = oCMS.GetExternalTools()for each item in aUnit wscript.echo itemnext