Get-RDRemoteApp

Get-RDRemoteApp

Gets RemoteApp programs in a Remote Desktop deployment.

Syntax

Parameter Set: Default
Get-RDRemoteApp [[-CollectionName] <String> ] [[-Alias] <String> ] [-ConnectionBroker <String> ] [-DisplayName <String[]> ] [ <CommonParameters>]

Detailed Description

The Get-RDRemoteApp cmdlet gets Windows Server 2012 RemoteApp programs in a Remote Desktop deployment. You can specify a collection name, an alias, or one or more display names.

RemoteApp allows Remote Desktop Services (RDS) to run a program remotely that appears as if it runs locally on a client computer. A RemoteApp program runs in its own resizable window and has its own entry on the taskbar.

Parameters

-Alias<String>

Specifies an alias for a RemoteApp program.

Aliases

none

Required?

false

Position?

2

Default Value

none

Accept Pipeline Input?

True (ByPropertyName)

Accept Wildcard Characters?

false

-CollectionName<String>

Specifies the name of a personal virtual desktop collection or session collection.

Aliases

none

Required?

false

Position?

1

Default Value

none

Accept Pipeline Input?

True (ByPropertyName)

Accept Wildcard Characters?

false

-ConnectionBroker<String>

Specifies the Remote Desktop Connection Broker (RD Connection Broker) server for a Remote Desktop deployment. If you do not specify a value, the cmdlet uses the fully qualified domain name (FQDN) of the local computer.

Aliases

none

Required?

false

Position?

named

Default Value

none

Accept Pipeline Input?

false

Accept Wildcard Characters?

false

-DisplayName<String[]>

Specifies an array of names to display to users for RemoteApp programs. You can use a wildcard character.

Aliases

none

Required?

false

Position?

named

Default Value

none

Accept Pipeline Input?

True (ByPropertyName)

Accept Wildcard Characters?

false

<CommonParameters>

This cmdlet supports the common parameters: -Verbose, -Debug, -ErrorAction, -ErrorVariable, -OutBuffer, and -OutVariable. For more information, see    about_CommonParameters (https://go.microsoft.com/fwlink/p/?LinkID=113216).

Inputs

The input type is the type of the objects that you can pipe to the cmdlet.

Outputs

The output type is the type of the objects that the cmdlet emits.

  • Microsoft.RemoteDesktopServices.Management.RemoteApp

Examples

Example 1: Get RemoteApp programs for a collection

This command gets RemoteApp programs for the collection named Session Collection, as specified by the CollectionName parameter.

PS C:\> Get-RDRemoteApp -CollectionName "Session Collection"

Example 2: Get RemoteApp programs by using a display name

This command gets RemoteApp programs that begin with the string Note.

PS C:\> Get-RDRemoteApp -DisplayName Note*

New-RDRemoteApp

Remove-RDRemoteApp

Set-RDRemoteApp