Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

Description

Gets a list of external tools.


Syntax

GetExternalTools() as ArrayList


Parameters

None


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

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 item 
next 
  • No labels