Been trying to build a CSV file to import users into Active Directory. I can get everything to populate, except for E-mail, Password, and Enabling the user. Just using this cmdlet in Powershell.
Import-CSV "C:\Users\Administrator\Downloads\adimport.csv" | new-ADUser
This is what my CSV looks like.
For some reason the E-Mail field in the General tab won't fill. I'm also not sure what column header to use to enable the profile, and I think password is userPassword, right?
Is there something i'm doing wrong that the E-Mail field won't fill in?