Allocating Exchange resources for an organization by using XML

Use the AllocateOrganization procedure of the Exchange Resource Manager namespace to allocate storage for an organization. This storage becomes the pool from which mailbox and other allocations are made for individual objects of the organization.

This procedure expects to be called with impersonate="1". The procedure impersonates the caller.

Example of a request that calls the AllocateOrganization procedure

<request>
 <procedure>
   <execute namespace="Exchange Resource Manager" procedure="AllocateOrganization">
	 <executeData>
	 <organization>LDAP://ou=ExchOrg1,dc=contoso,dc=com</organization>
	 <publicStore>
		 <megabytes>100</megabytes>
	 </publicStore>
	 <mailStore>
		 <megabytes>200</megabytes>
		 <shared>1</shared>
	 </mailStore>
	 </executeData>
	 <after source="executeData" destination="data" mode="merge" />
   </execute>
 </procedure>
</request>

Input for AllocateOrganization

The following input is valid for this request:

Typical response for AllocateOrganization

The response to this procedure does not contain significant data.

Important