View Single Post
Old 03-16-2010, 11:30 PM   #6
garycutri
Knows Where the Search Button Is
 
Join Date: Sep 2006
Location: Melbourne
Model: 8800
Carrier: Telstra
Posts: 46
Default

Hi,

1. Just run the following command via the Shell to turn off Throttling:

Get-ThrottlingPolicy | where {$_.IsDefault -eq $true} | Set-ThrottlingPolicy -RCAMaxConcurrency $null

2. Now show a list of all your Throttling Policies by using the command below:

Get-ThrottlingPolicy

3. From the "Get-ThrottlingPolicy" output locate the "DefaultThrottlingPolicy" name

Example: DefaultThrottlingPolicy_a1f84187-7a42-4ece-9276-06c704be21e7

4. Now type the following but change it to your DefaultThrottlingPolicy name.

Set-Mailbox "BESAdmin" -ThrottlingPolicy DefaultThrottlingPolicy_a1f84187-7a42-4ece-9276-06c704

5. Now we need to remove the incorrect policy.

Remove-ThrottlingPolicy BESPolicy

For more info please refer to my BES 5.01\Exchange 2010 Install Guide: http://www.blackberryforums.com.au/f...all-guide.html


Thanks,

Gary

Last edited by garycutri; 03-17-2010 at 12:05 AM..
Offline   Reply With Quote