# Set Group Description

> Sets the description of a group.

Source: https://docs.capaone.com/capainstaller/sdk-capainstaller-software-development-kit-functions/group-functions/set-group-description/  
Product: CapaInstaller — a separate CapaSystems product; do not apply this page to any other.

## Description

Sets the description of the group

## Syntax

SetGroupDescription(ByVal groupName As String, ByVal group type As String, ByVal description As String) As Boolean

## 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

Boolean. The function returns True if successful, otherwise false.

## Example

**VBScript**

```vb
Set oCMS = CreateObject("CapaInstaller.SDK") 
wscript.echo oCMS.SetInstanceManagementPoint("1")
wscript.echo oCMS.SetGroupDescription("Default", "Static", "Description of the group") 

```
