2020/09/08 #Get-ADUserのメソッド、プロパティ

皆様おはようございます、
#猫でもできるPowerShell(備忘録)
#Get-ADUserのメソッド、プロパティ

PS> Get-ADUser -fi * |Get-Member


   TypeName: Microsoft.ActiveDirectory.Management.ADUser

Name              MemberType            Definition                                                   

----              ----------            ----------                                                   

Contains          Method                bool Contains(string propertyName)                           

Equals            Method                bool Equals(System.Object obj)                               

GetEnumerator     Method                System.Collections.IDictionaryEnumerator GetEnumerator()     

GetHashCode       Method                int GetHashCode()                                             

GetType           Method                type GetType()                                               

ToString          Method                string ToString()                                             

Item              ParameterizedProperty Microsoft.ActiveDirectory.Management.ADPropertyValueCollection
 Item(string property...
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, Cul
ture=neutral, PublicK...
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;}                   


PS>

だいたい単発で調べて終わりになるケースが多いのですが、
次段の活用も覚えて行きたいと思います。
ではまた;