- 建立文本文档另存为csv文件,注意编码格式,否则导入后是乱码
- 使用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.查看建立的用户
时间: 2024-10-05 05:21:12