Retrieves information on a client or clients
Get-Client [-IncludeAppliances] [-ProgressAction <ActionPreference>] [<CommonParameters>]Get-Client [-Client <Object[]>] [-IncludeAppliances] [-ProgressAction <ActionPreference>] [<CommonParameters>]Retrieves information for for one or multiple clients, including client ID, name, health status, and device counters.
Optionally basic information about the client's appliances can be included.
PS > $clients = Get-Client
PS > $clients.Count
42PS > $oneClientFreshData = Get-Client -Client $clients[0]Returns updated client information
PS > $oneClientFreshData = $clients[0] | Get-Client -IncludeAppliancesReturns updated client information, now with basic appliance information
PS > $oneClient = Get-Client -Client 12345
PS > $oneClient.id
12345Client or clients to retrieve information for. Accepts one or more integer client IDs or objects. Parameter accepts from the pipeline.
Type: Object[]
Parameter Sets: Client
Aliases: Id
Required: False
Position: Named
Default value: None
Accept pipeline input: True (ByValue)
Accept wildcard characters: FalseReturn basic information about appliances for this client.
Type: SwitchParameter
Parameter Sets: (All)
Aliases:
Required: False
Position: Named
Default value: False
Accept pipeline input: False
Accept wildcard characters: FalseThis cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.
Accepts a Client object.
Returns a Client object or array of Client objects.