Get-PubRDSApp

NAME

Get-PubRDSApp

SYNOPSIS

Retrieves information about one or multiple published applications.

SYNTAX

Get-PubRDSApp [[-Name] <string>] [-SiteId <uint>] [<CommonParameters>]

Get-PubRDSApp [[-Id] <uint>] [-SiteId <uint>] [<CommonParameters>]

DESCRIPTION

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)

PARAMETERS


-Name <string>
Published resource name.

        Required?                    false
        Position?                    0
        Default value                
        Accept pipeline input?       false
        Accept wildcard characters?  false

-Id <uint>
Published resource ID.

        Required?                    false
        Position?                    0
        Default value                0
        Accept pipeline input?       false
        Accept wildcard characters?  false

-SiteId <uint>
Site ID.

        Required?                    false
        Position?                    named
        Default value                0
        Accept pipeline input?       false
        Accept wildcard characters?  false

<CommonParameters>
        This cmdlet supports the common parameters: Verbose, Debug,
        ErrorAction, ErrorVariable, WarningAction, WarningVariable,
        OutBuffer, PipelineVariable, and OutVariable. For more information, see 
        about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). 

INPUTS



OUTPUTS

PSAdmin.PubRDSApp

EXAMPLES


---------- EXAMPLE 1 ----------

Get-PubRDSApp | 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-PubRDSApp "My RDS App"

Retrieves the information about an application specified by name.

---------- EXAMPLE 3 ----------

Get-PubRDSApp -Id 11

Retrieves the information about an application specified by ID.

RELATED LINKS

Parallels RAS v16.0