Get-RASVDIHostStatus
Retrieves the list of, or a specific, host status.
Get-RASVDIHostStatus [-ProviderId] <uint> [[-SiteId] <uint>] -HostId <string> [-StatusLevel {Level1 | Level2 | Level3}] [-User <string>] [<CommonParameters>]
Get-RASVDIHostStatus [-InputObject] <VDIHost> [-ProviderId] <uint> [[-SiteId] <uint>] [-StatusLevel {Level1 | Level2 | Level3}] [-User <string>] [<CommonParameters>]
Get-RASVDIHostStatus [[-ProviderId] <uint>] [[-SiteId] <uint>] [-StatusLevel {Level1 | Level2 | Level3}] [-User <string>] [<CommonParameters>]
Retrieves the list of, or a specific, host status.
-ProviderId <uint> The ID of a Provider server from which to obtain the Host vm list.
-SiteId <uint> Site ID from which to retrieve the Host VM list.
If the parameter is omitted, the site ID of the Licensing Server will be used.
-HostId <string> The ID of the Host vm. To obtain the ID, use the Get-RASVDIHost cmdlet.
-InputObject <VDIHost> An object of type VDIHost representing a Host vm for which to retrieve the information.
To obtain the object, use the Get-RASVDIHost cmdlet.
-User <string> The username assigned to Host.
If empty square brackets ([]) are passed, the Host list will be filtered with those with an assigned user.
-StatusLevel <StatusLevel> Specifies the level of detail that should be returned.
Acceptable values: Level1 (VDI Host status information only), Level2 (VDI Host status and Host VM info), Level3 (VDI Host status, Host VMs, Applications).
Possible values: Level1, Level2, Level3
<CommonParameters>
---------- EXAMPLE 1 ----------
Get-RASVDIHostStatus | Format-List
Retrieves the list of host statuses. ---------- EXAMPLE 2 ----------
Get-RASVDIHostStatus -ProviderId 1
Retrieves the list of host statuses from the specified Provider server. ---------- EXAMPLE 3 ----------
Get-RASVDIHostStatus -ProviderId 1 -SiteId 1
Retrieves the list of host statuses from the specified Provider server from the specified site. ---------- EXAMPLE 4 ----------
Get-RASVDIHostStatus -ProviderId 1 -SiteId 1 -HostId "" | Format-List
Retrieves the specified host status from the specified Provider server from the pecified site.