Advertisement
hollerith

Import AD users from CSV

Jul 30th, 2018
476
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ##Beginning of functions
  2.  
  3. Function Format-Email {
  4.  
  5. Param ([string]$WCEmailContent,[string]$UserPrincipalName,[string]$UserPassword)
  6.  
  7. return $WCEmailContent + "User Name = $UserPrincipalName
  8. Password = $UserPassword
  9. Thank You
  10. IT Department"
  11. }
  12.  
  13. Function Send-Email {
  14.  
  15. Param ($Email, $Credential,[string]$WCEmailContent)
  16.  
  17. $subject = "Domain Account Details"
  18. $Body = $WCEmailContent
  19. $SMTPServer = "smtp.gmail.com"
  20. $SMTPPort = "587"
  21.  
  22. Send-MailMessage -from $From -to $Email -Subject $subject -Body $Body -SmtpServer $SMTPServer -Port $SMTPPort -Credential $Credential -UseSsl
  23.  
  24. }
  25.  
  26. ###End of Functions
  27.  
  28. ##### Beginning of main programme
  29.  
  30. $Credential = (get-Credential) #Getting email credentials to be used for From field in Email message
  31. $UsersFilePath = "C:\Users\Administrator.YOURDOMAIN\Desktop\WC\users.csv" # Files of users information (First name, Last name, Sam account name, Email address)
  32. $WCEmailFile = "C:\Users\Administrator.YOURDOMAIN\Desktop\WC\WCEmail.docx" # File containing welcome email message
  33.  
  34. import-csv -path $UsersFilePath | foreach {
  35.  
  36. $Name = ($_.GivenName + " " + $_.LastName)
  37. $UserPrincipalName = ($_.SamAccountName +@yourdomain.com”)
  38. $UserPassword = Get-Random -maximum 20000 -Minimum 100
  39. $UserPassword = "@" + "user" + $UserPassword.ToString()
  40. #Create user in Students OU
  41.  
  42. new-aduser -name $Name -enabled $true -GivenName $_.GivenName –surname $_.lastName -accountpassword (convertto-securestring $UserPassword -asplaintext -force) -changepasswordatlogon $true -samaccountname $_.SamAccountName –userprincipalname $UserPrincipalName -EmailAddress $_.EmailAddress -Path 'OU=Students,DC=yourdomain,DC=com' -ErrorAction Stop
  43.  
  44. $WCEmailContent = Format-Email -WCEmailContent (Get-Content $WCEmailFile) -UserPrinciPalName $UserPrincipalName -UserPassword $UserPassword
  45.  
  46. Send-Email -Email $_.EmailAddress -Credential $Credential -WCEmailContent $WCEmailContent
  47.  
  48. Write-Host "User Created: $Name"
  49. }
  50.  
  51. ### End of main program
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement