I can export users using this...
Get-ADUser -filter * -Properties givenName, sn, displayName, description, physicalDeliveryOfficeName, telephoneNumber, mail, userPrincipalName, sAMAccountName, streetAddress, l, st, postalCode, Country, homePhone, mobile, facsimileTelephoneNumber, ipPhone, title, department, company, manager, employeeID | Export-Csv c:\temp\export.csv
But I want to create new users with those attributes, what I need to add or change?