Get-RASPubRDSApp
Retrieves information about one or multiple published applications.
Get-RASPubRDSApp [[-Id] <uint>] [-SiteId <uint>] [<CommonParameters>] Get-RASPubRDSApp [[-Name] <string>] [-SiteId <uint>] [<CommonParameters>]
Retrieves information about one or multiple published applications. The cmdlet returns an array of objects of type PubRDSApp, each containing properties of a published application. 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-RASPubRDSApp | Format-List Retrieves the information about all available published applications. The Format-List cmdlet formats the display output to include the complete list of properties for each application. ---------- EXAMPLE 2 ---------- Get-RASPubRDSApp "My RDS App" Retrieves the information about an application specified by name. ---------- EXAMPLE 3 ---------- Get-RASPubRDSApp -Id 11 Retrieves the information about an application specified by ID.