Enable-ADAccount:无法验证参数“ Identity”上的参数

时间:2019-04-05 03:19:37

标签: windows powershell command

伙计们,我试图摆脱这个错误,当我运行以下powershell脚本时,我有一个users.csv文件,该文件应该创建一个新用户。我收到此错误,并且对如何解决它感到困惑。感谢您的阅读

  1. 第一段代码是我在Powershell中运行时发生的情况
  2. 第二段代码是powershell脚本
  3. 是usres文件

错误:

Please enter the desired password for 'CN=Kevin,CN=Users,DC=ICS021,DC=local'
Password: Repeat Password: Enable-ADAccount : Cannot validate argument on parameter 'Identity'. The argument is null. Provide a valid value for the argument, and then try running t
he command 
again.
At C:\Users\Administrator\Desktop\users.ps1:6 char:34
+     Enable-ADAccount  -Identity  $user.Identity
+                                  ~~~~~~~~~~~~~~
    + CategoryInfo          : InvalidData: (:) [Enable-ADAccount], ParameterBindingValidationException
    + FullyQualifiedErrorId : ParameterArgumentValidationError,Microsoft.ActiveDirectory.Management.Commands.EnableADAccount

代码:

$users  =  Import-CSV  "C:\Users\Administrator\Desktop\users.csv"
ForEach  ($user  in  $users) {
    $securepwd  =  ConvertTo-SecureString  -String  $user.'password' -AsPlainText  -Force
    New-ADUser  -Name  $user.Name  -GivenName  $user.'Given Name'  -Surname  $user.Surname -SamAccountName  $user.'SamAccountName'
    Set-ADAccountPassword  -Identity  $user.SamAccountName  -Reset  -NewPassword  $user.NewPassword 
    Enable-ADAccount  -identity  $user.identity
}

Csv:

Name,Given Name,Surname,SamAccountName,UserPrincipalName,Password
Kevin,Belanger,KB,2019,2019,password

1 个答案:

答案 0 :(得分:0)

尝试更换

Enable-ADAccount  -identity  $user.identity

作者

Enable-ADAccount  -identity  $user.SamAccountName