如何从displayname
列表(.txt)获取samaccountname
和办公室?之后,我想将displaynames
和办公室保存到.csv文件中。这是一种方法:
$users = Get-Content C:\TMP\test.txt
foreach ($user in $users)
{
Get-ADUser -ldapfilter "(samaccountname=$user)" -Property name, office | Select-Object -Property Name, Office
}
应该看起来像:
希望你能帮帮我吗?
答案 0 :(得分:0)
您要求Export-CSV
命令,但是根据您的评论,您可能会遇到展示位置问题或foreach
的构建问题。
让我们试试这个
$users = Get-Content C:\TMP\test.txt
$users | ForEach-Object {
Get-ADUser -ldapfilter "(samaccountname=$_)" -Property name,office | Select-Object -Property Name,office
} | Export-Csv -Path C:\temp\export.csv -NoTypeInformation
从评论中更新
从评论中了解您的输出有问题,这就是为什么我想要更多只是标题的图片。我不会对此代码存在任何问题,因此应引用文字,因此特殊字符(如逗号)不应成为问题。如果您正在发挥作用,请使用示例文件和的PowerShell版本的文本内容更新您的问题。
答案 1 :(得分:0)
在末尾使用delimiter参数
$users = Get-Content C:\TMP\test.txt
$users | ForEach-Object {
Get-ADUser -ldapfilter "(samaccountname=$_)" -Property name,office | Select-Object -Property Name,office
} | Export-Csv -Path C:\temp\export.csv -NoTypeInformation -Delimiter ";"