Jump to content

Recommended Posts

Posted

Hi.

 

I have a few users in Azure AD (Just for email access) and i want them to reset there passwords.

 

Is there something hiding withing Azure i can set for these users?

 

Thanks,

Newp

Posted
Do you mean you want the on-prem equivalent of "User must change password at next logon", rather than resetting their password manually?
Posted
Do you mean you want the on-prem equivalent of "User must change password at next logon", rather than resetting their password manually?

 

Yes. That would be the one.

Posted (edited)

If they're cloud users, you can do this with PowerShell:

Connect-Msolservice

Set-MsolUserPassword -UserPrincipalName [email protected] -ForceChangePasswordOnly $true -ForceChangePassword $true

 

If you have a lot of users you may want to do a search query instead.

 

Little edit: This isn't as instant as on-premises, can take up to half an hour in my experience. However it will eventually force a password change when the setting works its way around.

Edited by Mako
  • Thanks 1
Posted
If they're cloud users, you can do this with PowerShell:

Connect-Msolservice

Set-MsolUserPassword -UserPrincipalName [email protected] -ForceChangePasswordOnly $true -ForceChangePassword $true

 

If you have a lot of users you may want to do a search query instead.

 

Little edit: This isn't as instant as on-premises, can take up to half an hour in my experience. However it will eventually force a password change when the setting works its way around.

 

Thank you. Its was only for 6 users. So good old copy and paste. :)

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now



×
×
  • Create New...