使用文本文件遍历PowerShell命令

时间:2018-09-10 20:53:59

标签: powershell active-directory powershell-v5.0

我有一个文本文件test.txt,其中包含一个OU列表,我需要在其中计算每个OU中发现的用户数。

test.txt

"ou=MyOU1,dc=Mydomain,dc=net"
"ou=MyOU2,dc=Mydomain,dc=net"
"ou=MyOU3,dc=Mydomain,dc=net"

我将其传递给PowerShell中的命令:

Get-Content .\test.txt | Out-String | ForEach-Object {
    (Get-ADUser -Filter * -SearchBase "$_").Count
}

我遇到以下错误:

Get-ADUser : The supplied distinguishedName must belong to one of the
following partition(s): 'DC=Mydomain,DC=net ,
CN=Configuration,DC=Mydomain,DC=net ,
CN=Schema,CN=Configuration,DC=Mydomain,DC=net ,
DC=ForestDnsZones,DC=Mydomain,DC=net ,
DC=DomainDnsZones,DC=Mydomain,DC=net'.
At line:1 char:62
+ ... ing) | ForEach-Object {(Get-ADUser -Filter * -SearchBase "$_").Count}
+                             ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : InvalidArgument: (:) [Get-ADUser], ArgumentException
    + FullyQualifiedErrorId : ActiveDirectoryCmdlet:System.ArgumentException,Microsoft.ActiveDirectory.Management.Commands.GetADUser

但是,当我单独运行OU时,它可以工作。

PS> (Get-ADUser -Filter * -SearchBase "ou=MyOU1,dc=Mydomain,dc=net").Count
10782

1 个答案:

答案 0 :(得分:2)

注意:不仅不需要在代码中使用Out-String,而且实际上会创建一个单个输出字符串,这会导致您的命令出现故障,因为这样,ForEach-Object仅被称为一次,带有一个多行字符串。

Get-Content本身通过管道分别发送文本文件的各行,这就是您想要的:

Get-Content .\test.txt | foreach-object {
  (get-aduser -filter * -searchbase $_).count
}

请注意,$_已经是一个字符串,因此您不必将其包含在"..."中。

除此之外, if 文件中的行确实包含"..."括起来的字符串,如示例输入所示(可能不是,因为错误消息未反映出它们),并且您无法修复文件本身,则必须删除这些双引号,否则它们将成为传递给-SearchBase的字符串的 的一部分:

Get-Content .\test.txt | foreach-object {
  (get-aduser -filter * -searchbase ($_ -replace '"')).count
}