Jump to content

Recommended Posts

Posted

Hi All,

 

Wondering if someone has come across this before or been asked by their school. One of the schools i look after want to be able to give students individual passwords and have them recorded in a spreadsheet or similar. Are there any software applications or scripts that can apply passwords from a spreadsheet to users in AD? Or will generate random passwords in english and apply to the users.

 

EG 'whale12'

 

I know it cannot be done with CSVDE and i already have a VBS to bulk change users passwords, but applies the same one for every user.

 

Can anyone help??

 

Buddy

Posted
I know the school say they want the passwords in a spreadsheet - we did that and it didn't take long before some dopey teacher allowed the kids to get a copy and a lot of misery and hard work ensued!
Posted (edited)
Hi All,

 

Wondering if someone has come across this before or been asked by their school. One of the schools i look after want to be able to give students individual passwords and have them recorded in a spreadsheet or similar. Are there any software applications or scripts that can apply passwords from a spreadsheet to users in AD? Or will generate random passwords in english and apply to the users.

 

EG 'whale12'

 

I know it cannot be done with CSVDE and i already have a VBS to bulk change users passwords, but applies the same one for every user.

 

Can anyone help??

 

Buddy

 

I use DSADD and DSMOD for batch scripting user creation and modification, this would allow you to generate a csv list of users with preferred unique passwords and then export to a batch file and execute?

 

sample DSMOD:

dsmod user "cn=Joe Bloggs, ou=13, ou=Students, ou=All Users, dc=domain, dc=local" -fax 1234

 

sample DSADD:

dsadd user "cn=Joe Bloggs, ou=13, ou=Students, ou=All Users, dc=domain, dc=local" -samid 13bloggsj -fn Joe -ln Bloggs -display "Joe Bloggs" -upn [email protected] -email [email protected] -fax 1234 -pwd changeme

 

I have all of this in an excel sheet using concatenate functions paired with data extracted from my MIS to generate the required info.

Edited by cogrady84

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