Lonnie
First, I am not with the ogon project and this is not specifically about ogon so I hope its ok posting it here as I've not yet tried executing a remoteapp using ogon.
I use Ubuntu linux but have used xfreerdp (freerdp) for a long time and have used it to run 1 specific windows app (a mindmap program) as a "remoteapp" from a KVM VM that I still use today
I wanted to let you know one tip that I found out several years ago.
On Windows .. the "explorer" application has 1 special property.
If you execute "explorer" with freerdp as your remoteapp it will appear in its own Linux "window" like any other Linux application.
You can resize it, minimize/maximize it etc.
BUT... unlike running any other Windows application as a "remoteapp"... you can use "explorer" when run as a "remoteapp" to find & click on any other Windows application Icon on your Windows VM or remote Windows system
and that Windows application "inherits" the "remoteapp" capability of "explorer".
So what I did on my Windows systems is create a directory I called "win-apps".
In the "win-apps" directory I created Windows Desktop "launcher" icons for all the other Windows programs I might ever want to run as RemoteApps.
Then I execute a command line like the following example on my Linux system.
Lets assume my Windows 7 enterprise/ultimate IP address is 192.168.122.55
$ xfreerdp /cert-ignore /u:bmullan /p:my_pwd /drive:shared-folder,/home/bmullan/shared-folder +clipboard /sound:sys:alsa /app:'%windir%\explorer.exe' /v:192.168.122.55
If I then use explorer to browse into the "win-apps" directory I can click on ANY of those launcher Icon's and they all start in their own Linux application window and look/act
just like any other Linux application !
NOTE:
I have previously created a directory /home/bmullan/shared-folder and this command maps that folder as a shared drive into the Windows 7 so I see it in explorer and can copy files to/from it and my linux system
/drive:shared-folder,/home/bmullan/shared-folder
The following cmd line option enables clipboard copy/paste between Windows apps and Linux apps (except for graphics).
+clipboard
The following enables "sound/audio" between the Windows apps and Linux:
/sound:sys:alsa
And this cmd line option is what executes Windows Explorer as a "remoteapp"
/app:'%windir%\explorer.exe'
Brian