Azure AD exclude user from password experation policy
Posted On January 10, 2019
Connect to Azure AD with PowerShell:
Connect-azuread
Now we would like to get an overview of all users, run the following command:
Get-azureAduser
If you have the UserPrincipalName or email address we might shorten the list to just that single user bij adding a filter:
Get-AzureADUser -ObjectId <UserPrincipleName>
Next task is to link the default password policy without a password expiration to this user. Run the following command:
Set-AzureADUser -ObjectId <UserPrincipalName> -PasswordPolicies DisablePasswordExpiration
Once this has been completed, verify if the policy has been set correctly with the following command:
Get-AzureADUser -ObjectId <UserPrincipalName> | fl UserPrincipalName,passwordpolicies