POWERSHELL TO ENABLE AZURE MFA FOR BULK USER USING BulkUpdateMFASampleFile CSV

POWERSHELL TO ENABLE AZURE MFA FOR BULK USER USING BulkUpdateMFASampleFile CSV This is just extension to the earlier script – POWERSHELL TO ENABLE AZURE MULTI-FACTOR AUTHENTICATION FOR BULK USER Azure provide option to update bulk user from Azure portal using sample CSV file available at https://account.activedirectory.windowsazure.com/UserManagement/BulkUpdateMfa/BulkUpdateMFASampleFile.csv . you just need to add user and new MFA state […]

Continue Reading

Powershell to enable Azure multi-factor authentication for bulk user

How to  enable Azure multi-factor authentication for bulk user using powershell? MFA helps secure user sign-ins for cloud services beyond just a single password. With MFA for Office 365, users are required to acknowledge a phone call, text message, or app notification on their smart phones after correctly entering their passwords. They can sign in […]

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