# Get application groups

> Gets a list of application groups.

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

## Description

Gets a list of application groups.

## Syntax

GetApplicationGroups() as ArrayList

## Parameters

None

## Return value

ArrayList. An array containing all application groups. Each element in the arraylist consists of a string with these attributes; 

- app.ID
- app.Name
- app.Version
- app.Vendor
- app.AppCode
- app.Description
- app.GUID.

## Example

**VBScript**

```vb
Set oCMS = CreateObject("CapaInstaller.SDK") 
Set aUnit = CreateObject("System.Collections.ArrayList") 
wscript.echo oCMS.SetInstanceManagementPoint("1") 
Set aUnit =  oCMS.GetApplicationGroups() 
for each item in aUnit 
  wscript.echo item 
next 
```
