yhttech Posted August 15, 2014 Posted August 15, 2014 I used to use Active User Manager to import new users when I'm doing a bulk import before upgrading to 2K12 domain/servers. It doesn't seem to be compatible with the new OS. Anyone have a tool that is?
Gaz Posted August 15, 2014 Posted August 15, 2014 I use this for our 2003 2008 servers but you will have to try it and see if it works for 2012 AD Infinitum Active Directory network administration multiple user manager tool for Windows 2000 and NT4
minimoo Posted August 15, 2014 Posted August 15, 2014 Powershell Given microsoft's changes to try and push powershell / gui-less servers etc, it's probably worth spending a bit of time learning it. I've spent last few months on and off porting some old c# code (that used to create AD users etc) to powershell. The New-AdUser cmdlet, generates an AD user, we use similar to the below for parent accounts: New-ADUser -Name $username -SamAccountName $username -GivenName $forename -Surname $surname -DisplayName $display -Path $path -AccountPassword (ConvertTo-SecureString $password -AsPlainText -force) -PasswordNeverExpires $True -Enabled $true -Description $id -UserPrincipalName $upn For students/staff etc, you'd probably want to add some additional options i.e. home directory Following adds a user to a group: Add-ADGroupMember $group $username
FN-GM Posted August 15, 2014 Posted August 15, 2014 This spreadsheet is great. It makes the job really easy and is free. No need for scripts etc. - Account Management Spreadsheet
fairm010 Posted August 15, 2014 Posted August 15, 2014 AUM works for me on 2k12 domain when run on Windows 7.
Asgard Posted August 16, 2014 Posted August 16, 2014 I use this for our 2003 2008 servers but you will have to try it and see if it works for 2012 AD Infinitum Active Directory network administration multiple user manager tool for Windows 2000 and NT4 +1 for AdInfinitum Defiantly works with 2012 R2 as I've just created all our new students with it. I use it for a lot of other little bits outside of creating the users.
peterfarrell Posted February 12, 2016 Posted February 12, 2016 Hi fairm010 When you ran this on Windows 7 did it create the user folders on the server users share too? Thanks
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