# Retrieve and display the list of all the properties for an ADGroup object
Get-ADGroup -Identity Administrators -Properties *| Get-Member
# To retrieve the extended properties "OfficePhone" and "Organization" and
# the default properties of an ADUser object named "SaraDavis"
GetADUser -Identity SaraDavis -Properties OfficePhone,Organization
# To retrieve the properties with LDAP display names of "otherTelephone" and
# "otherMobile", in addition to the default properties for the same user
GetADUser -Identity SaraDavis -Properties otherTelephone,otherMobile | Get-Member
distinguishedName : CN=buncha junk,DC=net
name : User's name
objectClass : user
objectGUID : some guid
SamAccountName : SAM account name
SID : some SID
PropertyNames : {distinguishedName, name, objectClass, objectGUID...}
PropertyCount : 6
如果你真的喜欢单线:
如果您想进一步操作 User 对象,您可能希望将它们存储在一个数组中:
Properties
您可以指定一个参数来检索扩展属性。以下是TechNet 文档中的一些示例:如果你不介意我会推荐你一个工具。
...
我正在使用“Cjwdev Software”中的“AD-Info”从 Active Directory 中提取信息。就我而言,标准版正被积极用于分析 AD 并生成自定义报告。在您的情况下,免费版本可能应该已经这样做了。
如果你跑
您会看到一开始并没有很多可用的字段/属性;你想要的不在那里。
所以,你不能用你正在使用的工具做你想做的事。您可能会将 SID 或 DN 传递给另一个工具。