Create AD group
Description
Section titled “Description”Creates a CapaInstaller AD group.
Syntax
Section titled “Syntax”CreateADGroup(ByVal groupName As String, ByVal unitType As String, ByVal LDAPPath As String, ByVal recursive As Boolean) As Boolean
Parameters
Section titled “Parameters”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
Return value
Section titled “Return value”Boolean. Returns true if the group is created, otherwise false
Example
Section titled “Example”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)