Running multiple application using Remote App in Windows

2

1

I have successfully achieved how to execute an remote application on a Windows 7 ultimate machine. I used this link: http://geekswithblogs.net/twickers/archive/2009/12/18/137048.aspx

My question is Can I run two different applications simultaneously from the remote machine using Remote app? The blog suggests that to provide the path of the executable like following way in the RDP config file:

remoteapplicationprogram:s:C:\Windows\programm.exe

I am able to run single application with no problems, but I wonder if I can run two different applications. PS: I am able to run these two different application individually. I tried something like this but no success:

remoteapplicationprogram:s:C:\Windows\programm1.exe
remoteapplicationprogram:s:C:\Windows\programm2.exe

But in this case only the programm1.exe executes.

Simplified problem: Lets simply the problem, how can I create a RDP config file so that when I execute it, it executes the notepad as well as the calculator on the remote machine? I know how to execute one app at a time. But I don't know how to execute multiple apps at the same time?

ρss

Posted 2014-06-26T12:44:40.590

Reputation: 205

Answers

1

Answer from one of my coworkers:

Instead of specifying multiple programs in the RDP file, specify a batch file that contains

start "" c:\windows\system32\notepad.exe
start "" c:\windows\system32\calc.exe

When you connect the batch file will run and start both programs.

cdavid

Posted 2014-06-26T12:44:40.590

Reputation: 845

Well this is a clever solution. I'll test this and let you know if it worked. – ρss – 2014-07-04T07:39:27.417

This way will only start a cmd on remote server, you wont see the application interface – Root Loop – 2015-01-20T16:19:46.503

0

yes you can run multiple applications and executables but each executable has to be published for it to run.

ebooyens

Posted 2014-06-26T12:44:40.590

Reputation: 231

Sorry I didn't get what you mean by publish. Please provide the details. Please see my updated question. – ρss – 2014-07-02T14:26:09.800

Perhaps this will help? You may need to expand on your environment, server OS, etc if this doesn't help - http://social.technet.microsoft.com/wiki/contents/articles/2345.publish-a-remoteapp-application-on-remote-desktop-service.aspx

– ebooyens – 2014-07-02T14:29:19.150

Thanks, That works only for a Server machine. In my case I have a Windows 7 ultimate. :( – ρss – 2014-07-02T14:35:14.780