Skip to content

Create AD group

Creates a CapaInstaller AD group.

CreateADGroup(ByVal groupName As String, ByVal unitType As String, ByVal LDAPPath As String, ByVal recursive As Boolean) As Boolean

GroupName (String)

The name of the group

UnitType (String)

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

LDAPPath(String)

The LDAP Path of the elements in the group.

recursive(String)

Indicates if the AD group should be processed recursive

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

VBScript

Set oCMS = CreateObject("CapaInstaller.SDK")
wscript.echo oCMS.SetDefaultManagementPoint("1")
wscript.echo oCMS.CreateADGroup("Jylland","Computer","LDAP://OU=CapaInstalled,OU=Workstations,DC=capatest,DC=com",true)