Click here to Skip to main content
15,891,529 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
It was asked here if a metro app in windows 8 can launch a desktop program and the answer was "no" because metro apps are "sandboxed".

However, I found an interesting answer in this page:

---

I found a solution which is suitable for me. I just made an empty textfile in my app and called it launcher.yourappyouwanttostart and then executed it with

C#
Windows.System.Launcher.LaunchFileAsync("launcher.yourappyouwanttostart");


On the first startup it asks you for the assocation for this file and then you choose the exe file you want to run and from now on every time you execute this file, your app will be started.


---

I'm new and don't really understand what he means :/ make an empty textfile? Where, how?

Help is much appreciated :)
Posted

1 solution

Microsoft is really moving away from allowing 1 app to launch another app, there are many security vulnerabilities associated with such a technology, the biggest one being the command injection vulnerability. Microsoft's solution to this problem was to use what is known as the launcher, the launcher doesn't directly launch another application itself, as you would in the days of C++ where you would just call system("Your command") or pre metro where you would fire up a diagnostic process. Rather the launcher, which is, a Microsoft technology that's been around for a while directly calls the OS, to launch the application associated with such a file.

Microsoft allows you to associate file extensions with applications, see the context menu & the "open with" option by right clicking on a file. So Microsoft allows you to make that association and it's through that association that Windows, and more specifically windows 8 will determine the best possible application to open that file extension with.

Rather then you calling note pad, to open a text document through the diagnostic processes, you will now call the launcher, with the file you want to open, and the Launcher/OS will determine which application and the safest way to open the application.
 
Share this answer
 
Comments
Mossmyr 13-Feb-13 10:46am    
...and I suppose the .exe file extension can't be "best opened" by another application?

All I've been trying to do is make large tiles and artwork for shortcuts to desktop applications, but I guess this work-around isn't gonna work. I'll do some more research, thank you for your extensive answer.
CdnSecurityEngineer 13-Feb-13 10:49am    
Unfortunately not.

That would break the "sandboxing" that Microsoft had put in place, if that were possible all you'd have to do is write a vulnerable desktop app and get the user to click it via Metro. Which would then defeat the "security" they've put in place.
CdnSecurityEngineer 13-Feb-13 12:36pm    
Hey If you wouldn't mind accepting my answer if you found it helpful!
Mossmyr 13-Feb-13 14:08pm    
Yeah it was rather helpful :) much appreciated!
Something called OblyTile (google it) does exactly what I'm trying to achieve with one flaw: no wide tiles (or live tiles for that matter). I'll be using that until microsoft either fixes this nuisance or someone finds a work-around (I'm much too noob to try it myself). I recommend giving it a look.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900