Exchange 2010 Throttling Policy

Hallo zusammen,

Es kann schon mal vorkomman, dass man für einen Service User das Throttling unter Exchange 2010 einschränken , bzw. die Einschränkungen aufheben muss.

Mehr dazu auf Technet: Understanding Client Throttling Policies

Get-ThrottlingPolicy

Im folgenden Beispiel wird eine Throttling Policy erstellt, welche möglichst wenig Einschränkungen aufweist

New-ThrottlingPolicy UnrestrictedPolicy -RCAMaxConcurrency $null -RCAPercentTimeInAD $null -RCAPercentTimeInCAS $null -RCAPercentTimeInMailboxRPC $null -EWSMaxConcurrency $null -EWSPercentTimeInAD $null -EWSPercentTimeInCAS $null -EWSPercentTimeInMailboxRPC $null -EWSMaxSubscriptions $null -EWSFastSearchTimeoutInSeconds $null -EWSFindCountLimit $null -CPAMaxConcurrency $NULL -CPAPercentTimeInCAS $NULL -CPAPercentTimeInMailboxRPC $NULL

Die Zuweisung der Policy an eine Mailbox ist mit folgendem Befehl zu bewerkstelligen:

$Policy = Get-ThrottlingPolicy -Identity UnrestrictedPolicy
Set-Mailbox -Identity "User11" -ThrottlingPolicy $Policy

Get-Mailbox -Identity user | fl *policy

Grüsse

Andres Bohren