PowerShell Logo Small

Set-RDRemoteApp



This is the built-in help made by Microsoft for the command 'Set-RDRemoteApp', in PowerShell version 5 - as retrieved from Windows version 'Microsoft Windows Server 2012 R2 Standard' PowerShell help files on 2016-06-23.

For PowerShell version 3 and up, where you have Update-Help, this command was run just before creating the web pages from the help files.

SYNOPSIS

Modifies configuration settings for a RemoteApp program.

SYNTAX


Set-RDRemoteApp [-CollectionName] <String> [-CommandLineSetting <CommandLineSettingValue>] [-ConnectionBroker <String>] [-DisplayName <String>] [-FilePath <String>]
[-FileVirtualPath <String>] [-FolderName <String>] [-IconIndex <String>] [-IconPath <String>] [-RequiredCommandLine <String>] [-ShowInWebAccess <Boolean>] [-UserGroups
<String[]>] -Alias <String> [<CommonParameters>]
Set-RDRemoteApp [-CollectionName] <String> [-CommandLineSetting <CommandLineSettingValue>] [-ConnectionBroker <String>] [-DisplayName <String>] [-FilePath <String>]
[-FileVirtualPath <String>] [-FolderName <String>] [-IconIndex <String>] [-IconPath <String>] [-RequiredCommandLine <String>] [-ShowInWebAccess <Boolean>] [-UserGroups
<String[]>] -Alias <String> -VirtualDesktopName <String> [<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


The Set-RDRemoteApp cmdlet modifies configuration settings for a Windows Server 2012 RemoteApp program that runs in a Remote Desktop deployment.


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.



<

RELATED LINKS

Online Version: http://go.microsoft.com/fwlink/?LinkId=294263
Get-RDRemoteApp
New-RDRemoteApp
Remove-RDRemoteApp

REMARKS

<

Examples


Example 1: Modify settings for a RemoteApp program

PS C:\> Set-RDRemoteApp -CollectionName "Virtual Desktop Collection" -Alias "IE" –VirtualDesktopName "RDS-WKS-A27" -FolderName "Websites" -CommandLineSetting Require
-RequiredCommandLine "http://www.bing.com"



This command modifies settings for a RemoteApp program in the collection named Virtual Desktop Collection. The command specifies IE as an alias, and specifies Websites as
the folder where the RemoteApp program appears. The command specifies the virtual desktop name RDS-WKS-A27. This command uses a required command line argument. This
RemoteApp opens the specified browser to go to the specified URL.




Example 2: Modify user and group settings for a RemoteApp program

PS C:\> Set-RDRemoteApp -CollectionName "Session Collection" -Alias "Notepad" -FolderName "Admin Tools" -UserGroups @("contoso\Domain Admins")



This command modifies settings for a RemoteApp program in the collection named Session Collection. The command specifies Notepad as an alias for the program, and specifies
the Admin Tools as the folder where this RemoteApp program appears. The command also specifies the users and groups that can see the program.