Can RDP clients launch a remote application and then only display that application (and not the desktop)? The application would appear fullscreen within the client and if the application were closed the session would end.
feedback
|
|
Using an RDP connection file you can set the alternate shell to be your application; the file syntax is like
and you pass that as a command-line argument to mstsc.exe; this similar to chrissr's solution, but without affecting every RDP session you launch. A fuller summary of settings here. | |||
|
feedback
|
|
Yes, you can change the default shell from Explorer.exe to a specific application. In Regedit, navigate to HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon. The current shell should be Explorer.exe. Change it to YourApp.exe. That will change the shell for all users who log on to the machine. If you only want to change it for a specific user, go to the same key in HKEY_CURRENT_USER instead. | |||||
feedback
|
|
This is called "seamless" mode.
See mentioned Cendio website for more information. | |||
|
feedback
|
|
I think Citrix does that kind of thing. Though I'm not sure on specifics as I've only used it a couple of times. I think the one I used was called XenApp but I'm not sure if thats what you're after. | |||||
feedback
|
|
Not to my knowledge. For your consideration: MetaVNC | |||
feedback
|
|
RDP will not do that natively. As other answers have said -- you'll need to do some scripting and make policy changes as a kludge to make it hard for RDP logins to run anything but the intended application. However, as of 2008, Microsoft has released application virtualization technology via Terminal Services that will allow you to do this seamlessly. | |||
|
feedback
|
|
Another way is shown in this CodeProject article: http://www.codeproject.com/KB/IP/tswindowclipper.aspx The basic idea is to create a virutal channel that sends the windows position of the app(s) you want to show, then only render that part of the window on the client. | |||
|
feedback
|
|
The chosen answer did not work for me. What did work is RemoteApp which is described in a nice tutorial here: http://geekswithblogs.net/twickers/archive/2009/12/18/137048.aspx | |||
|
feedback
|