Net Deals Web Search

Search results

  1. Results From The WOW.Com Content Network
  2. Get-Member (Microsoft.PowerShell.Utility) - PowerShell

    learn.microsoft.com/en-us/powershell/module/microsoft.powershell.utility/get...

    The Get-Member cmdlet gets the members, the properties and methods, of objects. To specify the object, use the InputObject parameter or pipe an object to Get-Member. To get information about static members, the members of the class, not of the instance, use the Static parameter.

  3. Viewing object structure - PowerShell | Microsoft Learn

    learn.microsoft.com/en-us/powershell/scripting/samples/viewing-object-structure...

    The simplest technique for analyzing the objects that a command returns is to pipe the output of that command to the Get-Member cmdlet. The Get-Member cmdlet shows you the formal name of the object type and a complete listing of its members.

  4. Discovering objects, properties, and methods - PowerShell

    learn.microsoft.com/en-us/powershell/scripting/learn/ps101/03-discovering-objects

    Get-Member. Get-Member provides insight into the objects, properties, and methods associated with PowerShell commands. You can pipe any PowerShell command that produces object-based output to Get-Member.

  5. Get-ADGroupMember (ActiveDirectory) | Microsoft Learn

    learn.microsoft.com/en-us/powershell/module/activedirectory/get-adgroupmember

    The Get-ADGroupMember cmdlet gets the members of an Active Directory group. Members can be users, groups, and computers. The Identity parameter specifies the Active Directory group to access. You can identify a group by its distinguished name, GUID, security identifier, or Security Account Manager (SAM) account name.

  6. Get-ADUser (ActiveDirectory) | Microsoft Learn

    learn.microsoft.com/en-us/powershell/module/activedirectory/get-aduser

    Get-ADUser <user> | Get-Member. To get a list of the most commonly used properties of an ADUser object, use the following command: Get-ADUser <user> -Properties Extended | Get-Member. To get a list of all the properties of an ADUser object, use the following command: Get-ADUser <user> -Properties * | Get-Member.

  7. Get-DynamicDistributionGroupMember (ExchangePowerShell)

    learn.microsoft.com/en-us/powershell/module/exchange/get...

    Use the Get-DistributionGroupMember cmdlet to view the members of distribution groups and mail-enabled security groups. For information about the parameter sets in the Syntax section below, see Exchange cmdlet syntax .

  8. Get-Member (Microsoft.PowerShell.Utility) - PowerShell

    learn.microsoft.com/.../Get-Member?view=powershell-7.4

    Der Get-Member Befehl verwendet den Parameter Force, um die systeminternen Member und vom Compiler generierten Member der Objekte zur Anzeige hinzuzufügen. Sie können diese Eigenschaften und Methoden auf die gleiche Weise verwenden wie eine angepasste Methode des Objekts.

  9. Get-ADPrincipalGroupMembership (ActiveDirectory) | Microsoft...

    learn.microsoft.com/en-us/powershell/module/activedirectory/get...

    The Get-ADPrincipalGroupMembership cmdlet gets the Active Directory groups that have a specified user, computer, group, or service account as a member. This cmdlet requires a global catalog to perform the group search.

  10. Get-MgGroupMember (Microsoft.Graph.Groups) | Microsoft Learn

    learn.microsoft.com/en-us/powershell/module/microsoft.graph.groups/get...

    Get a list of the group's direct members. A group can have users, organizational contacts, devices, service principals and other groups as members. This operation is not transitive.

  11. Get-ADComputer (ActiveDirectory) | Microsoft Learn

    learn.microsoft.com/en-us/powershell/module/activedirectory/get-adcomputer

    To get a list of the default set of properties of an ADComputer object, use the following command: Get-ADComputer <computer> | Get-Member. To get a list of all the properties of an ADComputer object, use the following command: Get-ADComputer <computer> -Properties ALL | Get-Member.