如何通过Powershell编辑Active-Directory站点属性?

前端之家收集整理的这篇文章主要介绍了如何通过Powershell编辑Active-Directory站点属性?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我无法通过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.

那么为什么Powershell没有返回值,我如何查询和编辑位置属性

因为 Get-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
原文链接:https://www.f2er.com/windows/370119.html

猜你在找的Windows相关文章