Get-RASPubVDIDesktop
Retrieves information about one or multiple published desktops.
Get-RASPubVDIDesktop [[-Id] <uint>] [-SiteId <uint>] [<CommonParameters>]
Get-RASPubVDIDesktop [[-Name] <string>] [-SiteId <uint>] [<CommonParameters>]
Retrieves information about one or multiple published desktops.
The cmdlet returns an array of objects of type PubVDIDesktop.
To see the complete list of object properties, use the Format-List cmdlet (see examples).
-Name <string> Published resource name.
-Id <uint> Published resource ID.
-SiteId <uint> Site ID.
<CommonParameters>
-none-
---------- EXAMPLE 1 ----------
Get-RASPubVDIDesktop | Format-List
Retrieves information about all available published desktops.
The Format-List cmdlet formats the display output to include all available desktop properties. ---------- EXAMPLE 2 ----------
Get-RASPubVDIDesktop "My VDI Desktop"
Retrieves the information about a desktop specified by name. ---------- EXAMPLE 3 ----------
Get-RASPubVDIDesktop -Id 11
Retrieves the information about a desktop specified by ID.