cyberservices
asked on
Password changes using SharePoint
Here is the situation:
I have over 100 users who are remote from the corporate office who access SharePoint with an active directory account. There system is not at the corporate office they only access SharePoint through a browser. Their account is created by the IT department and sent to them via email. Once the account has reached 90 days the password needs to be changed. However, there is no prompt for them to change it. I believe that SharePoint doesn't provide this feature. What can be done or other options?
I have over 100 users who are remote from the corporate office who access SharePoint with an active directory account. There system is not at the corporate office they only access SharePoint through a browser. Their account is created by the IT department and sent to them via email. Once the account has reached 90 days the password needs to be changed. However, there is no prompt for them to change it. I believe that SharePoint doesn't provide this feature. What can be done or other options?
I would suggest a powershell script to check password age and send an email out to the users when it will expire in x number of days.
Check this article to notify users via email when their passwords expire:
http://expert-advice.org/2017/01/automate-password-change-notification-email/
You can create a group where you apply the 90-day policy. First, query AD to get all users who have changed the password during the last 76 days. Then add them to the group.
Fine-Grained Password and Account Lockout Policy Step-by-Step Guide:
https://technet.microsoft.com/en-us/library/cc770842(v=ws.10).aspx
You may also get help from this password expiration notifier to automatically alert your users to change their passwords timely.
Hope this helps!
http://expert-advice.org/2017/01/automate-password-change-notification-email/
You can create a group where you apply the 90-day policy. First, query AD to get all users who have changed the password during the last 76 days. Then add them to the group.
Fine-Grained Password and Account Lockout Policy Step-by-Step Guide:
https://technet.microsoft.com/en-us/library/cc770842(v=ws.10).aspx
You may also get help from this password expiration notifier to automatically alert your users to change their passwords timely.
Hope this helps!
You can allow users to use a webpart in sharepoint to change their passwords: http://glorix.blogspot.de/2007/10/ad-change-password-webpart.html
ASKER
Using SharePoint 2013 standard on premise. In Active directory I selected the option for a user to change the password the next time they log on. However, the option in the Windows Security dialog box does not give this option. It keeps coming back of just entering the password again. Is there a setting I'm missing or need to change? I believe there is no mechanism for SharePoint 2013 to change password. Is there a web part out there for SharePoint 2013?
I guess my linked code would work in 2013 - did you try it?
SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
ASKER
I did find this: Password reset option in RD WebAccess on Windows Server 2012. But how do you set it up?
ASKER CERTIFIED SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
ASKER
I can create one. But what documentation is available to install this host?
Thanks, good luck...
I would not setup an RD session host just for password changes, that is a very weird idea and also has licensing costs (RD CALs) to consider.
You have not yet commented on the idea of using what I linked, a webpart for sharepoint that allows password changing within sharepoint.
You have not yet commented on the idea of using what I linked, a webpart for sharepoint that allows password changing within sharepoint.
ASKER
I'm looking at a third party web part that will do just fine and send out emails when the password is ready to expire. Thanks everyone.