nLinked Posted November 8, 2012 Posted November 8, 2012 I'm looking to make or find a small password reset tool for Active Directory, which we can provide to certain staff. However, the tool should only allow resetting a single pre-specified AD account (so they shouldn't be able to change any other user's password, but allow the staff to change the password for that one account. Basically we have a need to reset the password of one particular account every day.
Timeout Posted November 8, 2012 Posted November 8, 2012 Hi It sounds like you need a customised taskpad with Delegated control, I think this post covers it http://www.edugeek.net/forums/windows/14088-restricting-mmc.html and this may help How to Create Custom MMC and Add TaskPad - TechNet Articles - United States (English) - TechNet Wiki I am sure others will answer as well.
tech-man Posted November 8, 2012 Posted November 8, 2012 Have a look at Password Control on WiseSoft - Resources for IT Professionals - you can alter the XML file to customise what they are able to do.
nLinked Posted November 8, 2012 Author Posted November 8, 2012 Thanks for your replies. I didn't know Wisesoft's one was configurable like that. But just managed to find http://www.edugeek.net/forums/windows/23952-easy-password-reset-software-3.html which allows customisation. It seems to do exactly what we need (specific single username) but I'll go through some testing and see...
glennda Posted November 8, 2012 Posted November 8, 2012 TBH its something which could easily be scripted DSQUERY USER -samid enter_username_here | dsmod user -pwd enter_new_pw_here -mustchpwd no and modify so that it prompts for the password rather then entering it in the script.
nLinked Posted November 8, 2012 Author Posted November 8, 2012 TBH its something which could easily be scripted DSQUERY USER -samid enter_username_here | dsmod user -pwd enter_new_pw_here -mustchpwd no and modify so that it prompts for the password rather then entering it in the script. Unfortunately the Easy Password Reset tool doesn't allow me to save the config file anywhere other than the user's local profile. I like the code above, but don't know how to program it into a window with an input box
glennda Posted November 8, 2012 Posted November 8, 2012 Unfortunately the Easy Password Reset tool doesn't allow me to save the config file anywhere other than the user's local profile. I like the code above, but don't know how to program it into a window with an input box I did have a script a while back at a previous place Let me have a play later and I'll post back.
nLinked Posted November 8, 2012 Author Posted November 8, 2012 TBH its something which could easily be scripted DSQUERY USER -samid enter_username_here | dsmod user -pwd enter_new_pw_here -mustchpwd no and modify so that it prompts for the password rather then entering it in the script. This works in a .bat batch file, thanks so much! set /P NewPassword="Enter the new password for user theirusername: " DSQUERY USER -samid theirusername | dsmod user -pwd %NewPassword% -mustchpwd no
Chunks_ Posted February 21, 2013 Posted February 21, 2013 The link im providing is on how to use a simple program and some AD tweaks to allow anyone assigned to a specific security group to change passwords. Here is a link to a step by step to achieve this.
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