Get management points
Description
Section titled “Description”Gets a list of management points.
Syntax
Section titled “Syntax”GetManagementPoints() as ArrayList
Parameters
Section titled “Parameters”None.
Return value
Section titled “Return value”The function returns an array of management points. Each management point (cmp) in the array is a joined line with the character defined with Set splitter.
- cmp.Id
- cmp.Name
- cmp.Description
- cmp.Drive
- cmp.GUID
- cmp.LocalFolder
- cmp.Server
- cmp.Share
- cmp.Parent.GUID
Example
Section titled “Example”VBScript
Set oCMS = CreateObject("CapaInstaller.SDK")Set aCmp = CreateObject("System.Collections.ArrayList")Set aCmp = oCMS.GetManagementPoints()for each cmp in aCmp wscript.echo cmpnext