Set Group Description
Description
Section titled “Description”Sets the description of the group
Syntax
Section titled “Syntax”SetGroupDescription(ByVal groupName As String, ByVal group type As String, ByVal description As String) As Boolean
Parameters
Section titled “Parameters”groupName(String)
- Name of the group
group type (String)
The type of group to retrieve.
- “Dynamic_ADSI”
- “Calendar”
- “Department”
- “Dynamic_SQL”
- “Reinstall”
- “Security”
- “Static”
Description(String)
The description of the unit
Return value
Section titled “Return value”Boolean. The function returns True if successful, otherwise false.
Example
Section titled “Example”VBScript
Set oCMS = CreateObject("CapaInstaller.SDK")wscript.echo oCMS.SetDefaultManagementPoint("1")wscript.echo oCMS.SetGroupDescription("Default", "Static", "Description of the group")