Expanding the capacity of a group by using XML

Use the ExpandWin2KCapacity procedure of the Managed Active Directory namespace to implement group nesting to circumvent the Windows 2000 Server limitation of 5000 members per group. This implementation handles two types of limits: users per organization and child organizations per organization.

After this call is made, repeated calls to DistributeGroupMemberships must be made until all of the affected groups have had their memberships redistributed. Capacity reduction is not implemented.

This procedure expects to be called with impersonate="1". The procedure impersonates the caller. The procedure must be run as an administrator of the organization.

Important

Example of a request that calls the ExpandWin2KCapacity procedure

<request>
  <procedure>
	<execute namespace="Managed Active Directory" procedure="ExpandWin2KCapacity"
		impersonate="1">
	<executeData>
		<organization>LDAP://ou=Hosting,dc=contoso01,dc=com</organization>
		<capacityType>UserN</capacityType>
		<multiplier>2</multiplier>
	</executeData>
	<after source="executeData" destination="data" />
	</execute> 	
  </procedure>
</request>

Input for ExpandWin2KCapacity

The following input is valid for this request:

Typical response for ExpandWin2KCapacity

The response to this procedure does not contain significant data.

Important