Get Group Description
Description
Section titled “Description”Returns the description of the group
Syntax
Section titled “Syntax”GetGroupDescription(ByVal groupName As String, ByVal groupType As String) As String
Parameters
Section titled “Parameters”groupName(String)
- Name of the group
groupType (String)
The type of group to retrieve.
- “Dynamic_ADSI”
- “Calendar”
- “Department”
- “Dynamic_SQL”
- “Reinstall”
- “Security”
- “Static”
Return value
Section titled “Return value”A String that contains the description of the group
Example
Section titled “Example”VBScript
Set oCMS = CreateObject("CapaInstaller.SDK")Set aUnit = CreateObject("System.Collections.ArrayList")oCMS.SetDefaultManagementPoint("1")wscript.echo oCMS.GetGroupDescription("Default","Static")