# Create group in Business Unit

> Creates a CapaInstaller group in a Business Unit.

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

## Description

Creates a CapaInstaller group in a Business Unit.

## Syntax

CreateGroupInBusinessUnit(ByVal groupName As String, ByVal groupType As String, ByVal unitType As String, ByVal businessUnit As String) As Boolean

## Parameters

*GroupName (String)*

The name of the group

*GroupType (String)*

The type of the group. Valid values are "Calendar", "Department"  and "Static"

*UnitType (String)*

The type of the elements in the group. This can be either "Computer" or "User"

*BusinessUnit(String)*

The name of the Business Unit

## Return value

Boolean. Returns true if the group is created, otherwise false

## Example

**VBScript**

```vb
Set oCMS = CreateObject("CapaInstaller.SDK") 
wscript.echo oCMS.SetInstanceManagementPoint("1") 
wscript.echo oCMS.CreateGroupInBusinessUnit("Jylland","Static","Computer","Denmark") 
```
