0

I have a program which takes some arguments. I have to expose this app remotely as an RDP icon.

One solution to this seems to have different batch file and expose all batch file a separate app. But i want only one RDP icon.

What is the standard way to do this?

ivan_pozdeev
  • 28,628
  • 13
  • 85
  • 130

1 Answers1

0

For Win2003, in mstsc advanced settings, set the command line in "Run this program upon connection" and "save as..." to an .rdp file.

Win2008r2 will not allow you to do this, you'll need to first set up the app to be used as RemoteApp, see Overview of RemoteApp.

ivan_pozdeev
  • 28,628
  • 13
  • 85
  • 130
  • Thanks for your response. I can always create RDP file, but the main concern is to pass arguments while initializing a remote app from RDP file – Shagoon Gurtata Apr 02 '14 at 06:51
  • I said "set the _command line_ in ". This means you can put the entire command line there, complete with arguments. – ivan_pozdeev Apr 02 '14 at 09:52