0

我正在尝试创建一个简单的 PowerShell 脚本,该脚本将从文本文件中查看 Active Directory 组列表,然后在 Active Directory 中搜索组(无论类型如何),然后获取每个组中的成员列表,以及然后将每个用户的“名称”属性输出到输出文本文件。现在我几乎已经完成了除了最后一部分之外的所有事情。当它将名称输出到文本文件时,它只向文件输出一个名称,而不是其他 300。但是,如果我取消输出函数,脚本只会在控制台中输出我想要的所有名称。有人可以解释为什么我完成这项工作的方法不起作用吗?我真的很好奇为什么我不能以我想要的方式将输出定向到文件。此外,脚本正确循环所有内容,我知道它也找到了组(我知道这一点,因为当我查看文本文件时,我看到每个文件都有一个条目),但脚本会遍历前 8 个组并开始抛出错误声明它找不到它应该循环通过的特定组。但它已经找到了它们并且只为每个文件输出了一个条目。为什么是这样?

我对我的第一个问题的答案更感兴趣,因为脚本仍然执行它应该正确执行的操作。

所以,重申一下,我想知道为什么脚本只向文件输出一个名称,而它应该为每个组输出 300+ 个名称。

      ##This is variable that will hold the file path for the list of Active Directory Groups##

 $file='C:\Users\me\Desktop\DL_Names.txt';

 ##Command to dump the list into a variable##

 $DLnames=get-content $file;

 ##This is the variable to hold the path for where the output files are to be placed##

 [string]$path='C:\Users\me\Desktop\DL_repository\';

 ##Loop through the variable and for each entry preform the instruction listed##

 foreach ($name in $DLnames)
 {

 ##These two variables are used to create the file name for the output files##

 [string]$filename=$name+'.txt';

  [string]$Fullpath=$path+$filename;

 #This variable is used to determine if the groups exists in Active Directory##

 $verifygroupexists = Get-ADGroup -Identity $name;

 ##This is the if statement that is used to determine if the group exists in Active Directory##

 if($verifygroupexists -eq $null)

 {

 ##If the group doesnt exist, create a file and output the string to the file stating so with the group name##

 ##Still working on the removing portion of this, need help##

 New-Item $fullpath -ItemType file;

 [string]$error='AD Group'+' '+$name+' '+'does not exist';

 $error | Out-File -filepath $Fullpath;

 $Removeentry=$name;

 $name.Remove($Removeentry);

 }  

 else

 {

 ##If the group does exist in Active Directory then create a new text file to be used for output.

 New-Item $fullpath -ItemType file;

       ##Get the list of memebrs in the group and place them into a new variable##

 $groupmember=get-adgroupmember -Identity $name;

              ##Now loop through each entry in the new variable and output to the text file each member's 'name' (A.K.A. Displayname)##

 foreach ($user in $groupmember)

 {


              ##This is where my issue is, its not outputting all of the names to the text file##

             $displayname=get-aduser -identity $User.SamAccountName | select name | Out-File -filepath $Fullpath; 


              };



         };


 }; 

例如,输出总是如下所示:

姓名

最后,姓名1

什么时候应该:

姓名

最后,姓名1

最后,姓名2

最后,姓名3

最后,姓名4

最后,姓名5

等等等等等等

4

1 回答 1

1

为组中的每个用户调用此行,每次运行时,它都会覆盖文件的内容。

$displayname=get-aduser -identity $User.SamAccountName | select name | Out-File -filepath $Fullpath;

如果替换Out-FileAdd-Content,则命令将附加到文件中。如果您重复运行脚本,请确保先使用Set-Content清除文件。您也不需要在$displayname此步骤中设置变量的值:

Set-Content -Value "" -Path $Fullpath
get-aduser -identity $User.SamAccountName | select name | Add-Content -Path $Fullpath;
于 2018-03-27T22:32:47.657 回答