July 2017
Intermediate to advanced
648 pages
31h 9m
English
There are many other parameters that can be used to limit resource consumption. For example, you can use the PowerShellMaxCmdlets parameter to control the number of cmdlets that can be run within a 2-minute interval:
New-ThrottlingPolicy -Name "Limit Max Cmdlets" -PowerShellMaxCmdlets 10 -PowerShellMaxCmdletsTimePeriod 2
Another example is the RecipientRateLimit parameter that is used to limit the number of recipients a user can address in a 24-hour period.
You can also create a policy that applies to all users in the organization automatically using the following cmdlet:
New-ThrottlingPolicy -Name "Limit Recipient Rate" -RecipientRateLimit 1000 -ThrottlingPolicyScope Organization
The ThrottlingPolicyScope parameter, as ...
Read now
Unlock full access