newpersn Posted February 6, 2019 Posted February 6, 2019 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
Mako Posted February 6, 2019 Posted February 6, 2019 Do you mean you want the on-prem equivalent of "User must change password at next logon", rather than resetting their password manually?
newpersn Posted February 6, 2019 Author Posted February 6, 2019 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.
Mako Posted February 6, 2019 Posted February 6, 2019 (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 February 6, 2019 by Mako 1
newpersn Posted February 6, 2019 Author Posted February 6, 2019 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.
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now