我无法通过Power
shell访问Active-Directory网站的位置属性. (
Windows Server 2012 R2)
以下命令不返回任何值:
> (Get-ADReplicationSite“Default-First-Site-Name”| Get-ADObject).location
此命令返回一个标识符:
> (Get-ADReplicationSite“Default-First-Site-Name”| Get-ADObject).objectGUID
当我查看Active Directory站点和服务管理单元中对象的图形属性编辑器时,我可以通过objectGUID-propterty验证我确实查询了正确的AD对象并且填充了location-property.
因为
原文链接:https://www.f2er.com/windows/370119.htmlGet-ADObject
does not retrieve all attributes默认:
The Get-ADObject cmdlet returns a default set of ADObject property values. To retrieve additional ADObject properties,use the Properties parameter of the cmdlet.
objectGUID属性具有值,因为它是the default property set的一部分
您可以使用-Properties参数指定要检索的Get-ADObject的其他属性:
(Get-ADReplicationSite "Default-First-Site-Name" | Get-ADObject -Properties location).location