How to add new guest users with 3rd party email address to Azure AD and subscription

How to add new guest users with 3rd party email address to Azure AD and subscription with or without  full permissions? Well you can add user with different domain email id (guest) or another option is you can create user with azure domain suffix. adding user with 3rd party suffix(non azure verified domain) may add […]

Continue Reading

Powershell to Reset password of test users who are member of one group

Powershell to Reset password of test users who are member of one group You can reset password of bulk users who are member of group1 by using below command: $upasswd = ConvertTo-SecureString “Abcd111*” -AsPlainText -Force Get-DistributionGroupMember group1 |foreach {write-host $_.PrimarySmtpAddress ; Set-ADAccountPassword -NewPassword $upasswd -Identity $_.Alias} Note – please change input values (marked in yellow) […]

Continue Reading

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