Powershell to update ThrottlingPolicy on bulk users from distribution group

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.  […]

Continue Reading