How to change a RemoteApp program icon in RDS Web Access

Open a powershell command prompt  as administrator Show the properties of a RDApp: [dt_code]Get-RDRemoteApp -alias "notepad" | fl[/dt_code] To change the icon: [dt_code]Set-RDRemoteApp -CollectionName "RemoteApps" -Alias "notepad" -IconPath "c:windowssystem32shell32.dll" -IconIndex 46[/dt_code] **The IconIndex works top to bottom starting in the top left icon, this icon is 0 and then counts up going down each column. [...]