Customize feed for Azure Virtual Desktop (classic) users

Important

This content applies to Azure Virtual Desktop (classic), which doesn't support Azure Resource Manager Azure Virtual Desktop objects. If you're trying to manage Azure Resource Manager Azure Virtual Desktop objects, see this article.

You can customize the feed so the RemoteApp and remote desktop resources appear in a recognizable way for your users.

First, download and import the Azure Virtual Desktop PowerShell module to use in your PowerShell session if you haven't already. After that, run the following cmdlet to sign in to your account:

Add-RdsAccount -DeploymentUrl "https://rdbroker.wvd.microsoft.com"

Customize the display name for a RemoteApp

You can change the display name for a published RemoteApp by setting the friendly name. By default, the friendly name is the same as the name of the RemoteApp program.

To retrieve a list of published applications for an application group, run the following PowerShell cmdlet:

Get-RdsRemoteApp -TenantName <tenantname> -HostPoolName <hostpoolname> -AppGroupName <appgroupname>

A screenshot of PowerShell cmdlet Get-RDSRemoteApp with Name and FriendlyName highlighted to customize display name.

To assign a friendly name to a RemoteApp, run the following PowerShell cmdlet:

Set-RdsRemoteApp -TenantName <tenantname> -HostPoolName <hostpoolname> -AppGroupName <appgroupname> -Name <existingappname> -FriendlyName <newfriendlyname>

A screenshot of PowerShell cmdlet Set-RDSRemoteApp with Name and New FriendlyName highlighted to customize display name.

Customize the display name for a Remote Desktop

You can change the display name for a published remote desktop by setting a friendly name. If you manually created a host pool and desktop application group through PowerShell, the default friendly name is "Session Desktop." If you created a host pool and desktop application group through the GitHub Azure Resource Manager template or the Azure Marketplace offering, the default friendly name is the same as the host pool name.

To retrieve the remote desktop resource, run the following PowerShell cmdlet:

Get-RdsRemoteDesktop -TenantName <tenantname> -HostPoolName <hostpoolname> -AppGroupName <appgroupname>

A screenshot of PowerShell cmdlet Get-RDSRemoteApp with Name and FriendlyName highlighted.

To assign a friendly name to the remote desktop resource, run the following PowerShell cmdlet:

Set-RdsRemoteDesktop -TenantName <tenantname> -HostPoolName <hostpoolname> -AppGroupName <appgroupname> -FriendlyName <newfriendlyname>

A screenshot of PowerShell cmdlet Set-RDSRemoteApp with Name and New FriendlyName highlighted.

Next steps

Now that you've customized the feed for users, you can sign in to an Azure Virtual Desktop client to test it out. To do so, continue to the Connect to Azure Virtual Desktop How-tos: