我正在尝试创建一个简单的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
最后,Name2
最后,姓名3
最后,Name4
最后,Name5
等等等等答案 0 :(得分:1)
为该组中的每个用户调用此行,每次运行时,它都会覆盖该文件的内容。
function myFunc(str){
for(var i = 0; i < str.length; i++){
x = str.charAt(str[i]);
}
return x
}
console.log(myFunc("great"))
如果将$displayname=get-aduser -identity $User.SamAccountName | select name | Out-File -filepath $Fullpath;
替换为Out-File
,则该命令将附加到该文件。如果您反复运行脚本,请务必先使用Add-Content
清除文件。作为此步骤的一部分,您也不需要设置变量Set-Content
的值:
$displayname