Create bulk users in Active Directory through Powershell


# Script:

Import-Module ActiveDirectory

Import-Csv .\Users.csv | ForEach {New-ADUser -SamAccountName $_.SamAccountName -UserPrincipalName $_.UPN -GivenName $_.FirstName -Name $_.Name -DisplayName $_.DisplayName -Surname $_.LastName -Department $_.Department -AccountPassword (ConvertTo-SecureString “Password@123” -AsPlainText -Force) -Enabled $true -ChangePasswordAtLogon $true -PassThru -Path $_.Path}

# CSV File Format:

Advertisement

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s