使用powershell批量导入AD用户

  1. 建立文本文档另存为csv文件,注意编码格式,否则导入后是乱码

    使用powershell批量导入AD用户_第1张图片

    使用powershell批量导入AD用户_第2张图片

  2. 使用powellshell命令导入

    Import-Csv -Path E:\users.csv | foreach { new-aduser -name $_.name -SamAccountName $_.samaccountname -GivenName $_.givenname -Surname $_.surname -DisplayName $_.displayname -Path $_.path -UserPrincipalName $_.userprincipalname -AccountPassword  (ConvertTo-SecureString -string  $_.accountpassword -AsPlainText -Force )  -Enabled $true -ChangePasswordAtLogon $false }

   3.查看建立的用户

使用powershell批量导入AD用户_第3张图片


 本文转自 烟台小崔 51CTO博客,原文链接:http://blog.51cto.com/seawind/1963593

你可能感兴趣的:(使用powershell批量导入AD用户)