Jump to content

Recommended Posts

Posted
I am looking at a way to give staff access to reset pupil passwords but not to give them any admin access. We use a 2008 r2 windows domain. Can anyone recomend a good way of implementing that?
Guest TheLibrarian
Posted
Create a custom MMC and use the delegate control wizard on the appropriate OU containing the pupil accounts.
Guest TheLibrarian
Posted

That would be the custom MMC part.

 

You can focus the MMC on a particular part of AD, and as long as you have delegated control they can use that to reset passwords.

Guest TheLibrarian
Posted

 @echo offsetlocal


:start
cls
echo,
echo,
set /p _username_=Please enter the username :


if "%_username_%" == "q" goto end


for /f "tokens=1* delims=*" %%i in ('dsquery user -limit 1 -samid "%_username_%"') do (
echo %%i
set _upn_=%%i
if NOT "%%i" == "" goto chpwd
)


goto start




:chpwd
dsmod user %_upn_% -pwdneverexpires no
dsmod user %_upn_% -pwd 123456 -mustchpwd yes


:end

 

I'm lazy and use this script to reset passwords.

Posted

We use Password Control, its a free application, easy to install.

 

we had if installed on our server (2008r2) and have a link to it on our staff profiles.

 

Works a treat. PM me if you want some more info.

Guest TheLibrarian
Posted

They would see everything that they have permission to, but they would not be able to change anything.

 

I don't think it really matters what the teachers see, only what they can change. (Just my £0.02)

Guest TheLibrarian
Posted
We use Password Control, its a free application, easy to install.

 

Post a link?

Posted
They would see everything that they have permission to, but they would not be able to change anything.

 

I don't think it really matters what the teachers see, only what they can change. (Just my £0.02)

 

You've been very helpful, thankyou

Guest TheLibrarian
Posted
You've been very helpful, thankyou

 

You are welcome. :)

Posted
Custom MMC - in a normal AD MMC, right click on the OU you want them to see and choose New Window. Save that as a new MMC and put it somewhere they can all get to. Delegate the relevant permissions to staff on that OU. Easy peasy!
Posted
Custom MMC - in a normal AD MMC, right click on the OU you want them to see and choose New Window. Save that as a new MMC and put it somewhere they can all get to. Delegate the relevant permissions to staff on that OU. Easy peasy!

 

Brilliant thanks :)

Posted
Could I reset passwords on a server 2008r2 domain with a Windows XP machine?

 

Could only find mention of Vista and Win7 bits, sorry :( don't know myself tbh as we're still 2003 based, so that all plays fine with XP. Maybe someone else could shed some light on it?

Posted

I went through this a few years back and didn't care for the custom MMC approach. For the life of me I can't remember why though... Anyways, I wound up writing a VB app that lets teachers unlock and reset passwords for student accounts. It's been through a couple revisions and one total rewrite as it was written in VB6 in its first version, and then VB .Net 2010. It gives staff a breakdown by grad year in a treeview and allows partial searches for student names and ID numbers. It'll even show student pictures if they have one.

 

The rights to change the lockout and password attributes on the student's accounts must be granted on whatever OU students accounts reside in.

 

Don't be afraid to download VB .Net 2010 Express and give it a try. It was actually a lot of fun learning how to put this together.

 

studentreset.png

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...