views:

33

answers:

1

Any idea about opening a remote app (Microsoft Terminal Services) on client through .Net?

+1  A: 

Just create an RDP file, write it to disk and launch mstsc with the rdp file as parameter.

For a remoteapp the following lines are important (here in sample for MSPaint):

remoteapplicationmode:i:1
alternate shell:s:||mspaint
remoteapplicationprogram:s:||mspaint
remoteapplicationname:s:Paint
Remko