我需要从某个 OU 获取用户概述。但是,当我成为成员时,会收到带有“ 名称”的多个属性。经过尝试,我终于找到了我需要的1。但是我认为有一种更快的方法来了解每个属性实际上代表的/含义。
'''
TypeName: Microsoft.ActiveDirectory.Management.ADUser
Name MemberType Definition
---- ---------- ----------
DistinguishedName Property System.String DistinguishedName {get;set;}
Enabled Property System.Boolean Enabled {get;set;}
GivenName Property System.String GivenName {get;set;}
Name Property System.String Name {get;}
ObjectClass Property System.String ObjectClass {get;set;}
ObjectGUID Property System.Nullable`1[[System.Guid, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]] ObjectGUID {get;set;}
SamAccountName Property System.String SamAccountName {get;set;}
SID Property System.Security.Principal.SecurityIdentifier SID {get;set;}
Surname Property System.String Surname {get;set;}
UserPrincipalName Property System.String UserPrincipalName {get;set;}
'''
答案 0 :(得分:0)
通常,在您喜欢的搜索引擎中输入TypeName([Microsoft.ActiveDirectory.Management.ADUser]
),将为您显示一个合适的Microsoft网站,其中列出了所有属性。但是,这些文档的编写方式差别很大。有时快速浏览即可告诉您所有您需要了解的信息(例如[system.windows.forms.form]
),有时完全没有用,就像您的情况一样。