Powershell to set ThrottlingPolicy on bulk users member of one distribution group
You can set ThrottlingPolicy “exchcheck” on bulk users who are part of one Distribution group by using below command:
Get-DistributionGroupMember group1 |foreach {write-host $_.PrimarySmtpAddress ; Set-Mailbox -ThrottlingPolicy exchcheck -Identity $_.Alias}
Note – please change input values (marked in yellow) as per your requirements.
if you dont have ThrottlingPolicy then you can use New-ThrottlingPolicy powershell to create one, for more help please check – New-ThrottlingPolicy
(Visited 2 times, 1 visits today)
Comments are closed.