# Add package to group

> Adds a package to a group.

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

## Description

Adds a package to a group.

## Syntax

AddPackageToGroup(Byval **packageName** as String, Byval **packageVersion** as String, Byval **packageType** as String, Byval **groupName** as String, Byval **groupType** as String) as Boolean

## Parameters

***PackageName (String)***

The name of the package.

***PackageVersion (String)***

The package Version.

***PackageType (String)***

The package type;

- 1 (Computer)
- 2 (User)

***GroupName (String)***

The name of the group that the package should belong to

***GroupType (String)***

The type of group

- "Dynamic\_ADSI"
- "Calendar"
- "Department"
- "Dynamic\_SQL"
- "Reinstall"
- "Security" "Static"

## 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.AddPackageToGroup("Acrobat Reader","v8.0","1","Test","Static") 
```
