Search notes:

PowerShell cmdLet get-member

get-member $obj returns a list of Microsoft.PowerShell.Commands.MemberDefinition objects that describe the members of the PowerShell object $obj: its properties, methods, script methods and events.
Usually, an object is piped into the get-member cmdLet:
$obj | get-member
However, it is also possible to explicitly state the input object:
get-member -inputObject $obj
get-member won't return properties that are hidden.

-memberType

The option -memberType specifies which type of members to display. It accepts a valu of the System.Management.Automation.PSMemberTypes enum

-force

With -force, the cmdLet also returns the the object's intrinsic members and its get_ and set_ methods.

See also

Powershell command noun: member

Index