For example, if we want to remove the connectionbar we could run the following command:
Set-RDSessionCollectionConfiguration –CollectionName QuickSessionCollection "displayconnectionbar:i:0"
These settings are are stored in the registry of the RD Connection Broker(s) that are part of the Session Collections deployment.
Do note that if we wanted to add an additional custom RDP property we would have to specify all the custom RDP properties in one command. For example if we would add an additional custom RDP property to map the local C: drive and run
Set-RDSessionCollectionConfiguration –CollectionName QuickSessionCollection "drivestoredirect:s:C:"
That would overwrite the previously added custom RDP property.
We obviously have to add all the custom RDP properties at once. To make this work we need to add a linefeed character (which is: `n) between the options otherwise it won’t be applied properly. The command would look like this:
Set-RDSessionCollectionConfiguration –CollectionName QuickSessionCollection "drivestoredirect:s:C: `n displayconnectionbar:i:0"
This will result in a published desktop with the following properties
Source and more info: http://microsoftplatform.blogspot.nl/2013/01/adding-custom-rdp-properties-in-windows.html
Maheshkumar S Tiwari edited Original. Comment: Added tags