是否可以在属性完整的情况下检索 Active Directory 中用户对象的 RDN。
我对此进行了大量阅读,发现一个 AD 用户对象将 RDN 存储在一个名为“name”的属性中。假设 name (rdn) 属性的值应该类似于 name = "cn=Smith, Joe"。cn 属性是应该返回的内容的一部分。但是,每当我检索对象的名称属性时,“cn=”似乎总是丢失。例如
$foo = get-aduser -filter 'Name -like "Smith, Joe"'
$foo.name
"Smith, Joe"
不会返回"cn=Smith, Joe"
。有没有办法查询并让完整的 RDN 返回?