Get unit linked units
Description
Section titled “Description”Gets units linked to a unit
Syntax
Section titled “Syntax”GetUnitLinkedUnits(Byval UnitName as String, Byval UnitType as String) as ArrayList
Parameters
Section titled “Parameters”UnitName (String)
The name of the unit
UnitType (String)
Type of Unit
- “Computer”
- “User”
Return Value
Section titled “Return Value”The function returns an array of units. Each unit (unit) in the array is a joined line with the character defined with Set splitter.
- unit.Name
- unit.Created
- unit.LastExecuted
- unit.Status
- unit.Description
- unit.GUID
- unit.ID
- unit.Type.Name
Example
Section titled “Example”VBScript
Set oCMS = CreateObject("CapaInstaller.SDK")Set aUnit = CreateObject("System.Collections.ArrayList")wscript.echo oCMS.SetDefaultManagementPoint("1")Set aUnit = oCMS.GetUnitLinkedUnits("Klient","Computer")for each item in aUnit wscript.echo itemnext