TheFORCE wrote: » I don't beleive people here would go ahead and do your homework for you. That's not what this forum is for. But we can guide you to the right direction. Do some searches in the intrawebs for Powershell. It will help you do what you want very easily. There's tons of free resources on the Microsoft website that explain all the switches and how to use them.
#Array of users names you want to have added $arryUsers = @("user1", "user2", "user3", "user4") $password = "password" $group = "Users" foreach ($u in $arryUsers) { NET USER $U $password /ADD NET LOCALGROUP $group $u /ADD }
Swaswaswa wrote: » Thank you so much. I will try and learn Powershell! Well, I'm gonna have to anyways. lol
Import-Module activedirectory new-aduser -Name User -UserPrincipalName User@corp.domain.com -AccountPassword (ConvertTo-SecureString "P@ssword" -AsPlainText -Force) -Enabled $true -PasswordNeverExpires $true
philz1982 wrote: » I will send you some links to help you but first you need to tell us. I assume you want to use powershell or are you looking for some other form of scripts. Next I need to know is this local or AD accounts? Building PS Scripts is really simple and tons of resources. My only coaching to you is get very comfortable with MSDN, StackExchange, and ServerFault. Also, learn to use the ISE version of Powershell (Makes life a lot easier!). Feel free to pm me with questions. While I won't write the script for you, I will give you coaching on resources and processes. Also, go buy the books 30 lunches Powershell and 30 Lunches Powershell advanced (I think those are the names). The authors make a boring subject like Powershell interesting.