Questions tagged [remoteapp]

RemoteApp is a special mode of Remote Desktop Services, available in Windows Server 2008 R2 and later, where remote session configuration is integrated into the client operating system.

The UI for the RemoteApp is rendered in a window over the local desktop, and is managed like any other window for local applications. The end result of this is that remote applications behave largely like local applications.

111 questions
1
vote
1 answer

Azure RemoteApp - Run IE9 and JRE

Does RemoteApp allow you to install any version of Internet Explorer? I have a need to support 40 users and I need to give them access to IE9 and a specific version of Java Run Time. Thanks
AlterWorld
  • 429
  • 1
  • 6
  • 18
1
vote
0 answers

Azure Remote app how to end a stuck process

We have an app that we are testing to move over to the Azure RemoteApp. Currently the application creates word documents and merges them. Sometimes a word window will hang in this process. Currently what we would do with RDP is end the winword.exe…
Richard H
  • 31
  • 6
1
vote
1 answer

Azure Remote App inside my Web Application

I want crate application in which i want to have azure remote app . let us consider the below scenario: I have implemented the Designer application (report designer) in WPF. now i creating the website,user of this website need to design the report…
sham morthi
  • 181
  • 8
1
vote
0 answers

Microsft RDS RemoteApp - invoking application under different accounts in one app

I have a strange problem with using RemoteApp ActiveX... Background: I'm trying to load test our Remote Desktop Session Host, in a particular scenario of running our GUI application via RemoteApp. Mostly the maximum user density in this scenario is…
Igor Malin
  • 652
  • 2
  • 8
  • 26
1
vote
1 answer

Launching a RemoteApp programmatically without a system call to "mstsc"

I've an RDP file that successfully start a RemoteApp. remoteapplicationmode:i:1 remoteapplicationprogram:s:||application remoteapplicationname:s:application.exe remoteapplicationcmdline:s: authentication…
Paolo M
  • 12,403
  • 6
  • 52
  • 73
1
vote
0 answers

Azure Active Directory with RDWeb

I am currently working with Windows Azure for the first time and looking to set up Remote Desktop Services with multi factor auth, so far i have .... Sync'd the Azure AD with my domain using Dirsync, set up the multi factor auth for my sync'd…
1
vote
2 answers

How can I create an remote application connection throught .NET?

So far, I created an app, using AxMsTscAxNotSafeForScripting class for Remote Desktop connection. Everything works like a charm! Now, what I need is to configure this object to launch a specific application upon connection. Let's see the…
FrameWorker
  • 11
  • 1
  • 2
1
vote
1 answer

Visual Studio 2012 Designer throws exception 0x80270257

TLDR; VS2012 throws an exception like below when trying to edit XAML in the Designer running VS2012 as a RemoteApp. Right, I may be asking this in the wrong place, but I'm at my wits end with this. Basically what I'm trying to achieve is to run…
1
vote
1 answer

Excel programming module running slow on Terminal Server 2008

I have a Windows application that exports to Excel using the Excel Object Module (programming module). It has worked fine on all Winodws versions except Windows Server 2008. It takes about 2 seconds to do anything in Excel, making the process take…
Jeff Stock
  • 3,796
  • 12
  • 46
  • 61
1
vote
1 answer

C# Retrieving System.Evironment when run as RemoteApp

I have a C# application setup as a remote app running on a server. When the application runs I grab the MyDocuments folder from System.Environment in order to save down user generated files. The path for MyDocuments that I get back is naturally the…
FodderZone
  • 863
  • 12
  • 27
1
vote
0 answers

Wrong Scale with Report Printing (C# .Net) in EMF if application is running as RemoteApp

I have an application that has uses the PrintDocument object for printing reports. Reports are rendered in EMF and everything is fine until you run the application as an RemoteApp. As RemoteApp, the application cannot get the client monitor's DPI…
rm6
  • 13
  • 2
0
votes
1 answer

Is there a way to change command-line arguments in a signed RDP file?

I need to specify command line arguments for a RemoteApp using the remoteapplicationcmdline property of a signed RDP file. However, after the RDP file is signed, I cannot change the value for remoteapplicationcmdline. If I remove…
Jason
  • 8,400
  • 10
  • 56
  • 69
0
votes
0 answers

How to publish built-in app in RemoteApp?

I'm trying to publish a built in app from Microsoft store through RemoteApp. What I did is creating a .bat file with this command: %SystemRoot%\explorer.exe /e,/root,shell:appsFolder\FortinetInc.FortiTokenWindows_sq9g7krz3c65j!App When running the…
0
votes
0 answers

Use Delphi TMsRdpClient9NotSafeForScripting minimizing remoteapp after more than 10 seconds, the session will automatically disconnect

Use Delphi TMsRdpClient9NotSafeForScripting minimizing remoteapp after more than 10 seconds, the session will automatically disconnect Environment: Client: Windows 10 Server: winserver 2008 R2 var rdp:…
Tag
  • 1
  • 1
0
votes
0 answers

How to deal with dependencies of data in an offline-first implementation

I'm currently trying to develop an app with offline-first ability, however, the dependence between my data objects seems to be messing things up. Say I have a profile model where most of other data refers to, a task model referring profile, and a…