使用 PowerShell 列出对象描述

Using PowerShell to list Object Description

我有一个 CSV 文件,其中包含我所在域中的 PC 列表。我想从 AD 中获取 AD 中列出的每台机器的 "Description" 字段信息。这是我目前所拥有的:

Import-Module ActiveDirectory

Get-ADComputer -Filter {OperatingSystem -NotLike "*Server*"} -SearchBase "OU=Active,OU=Regular Computers,OU=EPComputers,DC=epenergy,DC=net" -Properties * | Select-Object Name,OperatingSystem,CanonicalName | Export-Csv C:\PCList.csv -NoTypeInformation

我不确定我需要在 get-ADObject 的什么地方添加并过滤掉描述字段,甚至不知道从哪里开始。任何帮助都会很棒!

谢谢!

您目前只输出以下属性:Name、OperatingSystem、CanonicalName 到您的 CVS。如果您将描述添加到您正在选择的对象列表中,您也应该获得描述属性。

Select-Object Name,OperatingSystem,CanonicalName,Description

这将使您的代码块:

Import-Module ActiveDirectory

Get-ADComputer -Filter {OperatingSystem -NotLike "*Server*"} -SearchBase "OU=Active,OU=Regular Computers,OU=EPComputers,DC=epenergy,DC=net" -Properties * | Select-Object Name,OperatingSystem,CanonicalName,Description | Export-Csv C:\PCList.csv -NoTypeInformation

虽然我使用以下方法进行了测试,但它返回了我域中所有机器的名称、描述、操作系统和规范名称:

Import-Module ActiveDirectory

Get-ADComputer -Filter * -Properties * | Select-object name,Description,OperatingSystem,CanonicalName | Export-Csv C:\PCList.csv -NoTypeInformation

您可能会发现 this website 很有用,我几乎总能在 ss64

上找到我的 powershell 问题的答案