我正在尝试列出用户,并将其SamAccount名称与Active Directory进行比较,并过滤哪些用户AD帐户被禁用。
我在执行脚本时收到以下错误消息。
我执行以下操作:
$Names = @("Shannon.Hoffman","Kameron.Mack","Ashleigh.Reeves","Diego.Colon","Mayra Ortega","Mark.Dunn")
Get-ADUser -Filter {(Enabled -eq "False") -and (SAMAccountName -like $Names)}
我收到此错误消息:
Get-ADUser : Cannot convert 'System.Object[]' to the type 'Microsoft.ActiveDirectory.Management.ADUser' required by parameter 'Identity'. Specified method is not supported.
我也收到一条错误消息,说ParameterBindingException
我对PowerShell比较陌生。您能帮我了解我在做什么错吗?
非常感谢!
答案 0 :(得分:2)