Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7601483
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T23:10:28+00:00 2026-05-30T23:10:28+00:00

Is there a way to launch a desktop application from a Metro-style app on

  • 0

Is there a way to launch a desktop application from a Metro-style app on Windows 8? I’m trying to create some simple shortcuts to desktop applications to replace the desktop icons on the start screen, which look out of place.

I just need something super simple, preferably in C#, to open an application as soon as the app loads. I’m planning on making these shortcuts for some games, photoshop, etc, not anything I’ve made myself. They’re also just for personal use, so I can use direct paths to applications like "C:\Program Files (x86)\Steam\steamapps\common\Skyrim\TESV.exe"

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-30T23:10:29+00:00Added an answer on May 30, 2026 at 11:10 pm

    If you simply want to run a desktop application like (notepad, wordpad, internet explorer etc) then go through Process Methods and ProcessStartInfo Class

    try
    {
    // Start the child process.
        Process p = new Process();
        // Redirect the output stream of the child process.
        p.StartInfo.UseShellExecute = false;
        p.StartInfo.FileName = "C:\Path\To\App.exe";
        p.Start();
    }
    

    // Exp 2

    // Uses the ProcessStartInfo class to start new processes,
    // both in a minimized mode.
    void OpenWithStartInfo()
    {
        ProcessStartInfo startInfo = new ProcessStartInfo("IExplore.exe");
        startInfo.WindowStyle = ProcessWindowStyle.Minimized;
    
        Process.Start(startInfo);
    
        startInfo.Arguments = "www.northwindtraders.com";
    
        Process.Start(startInfo);
    }
    

    On Windows 8 Metro application i discovered this: How to Start a
    external Program from Metro App
    .

    All the Metro-style applications work in the highly sand boxed
    environment and there is no way to directly start an external
    application.

    You can try to use Launcher class – depends on your need it may
    provide you a feasible solution.

    Check this:
    Can I use Windows.System.Launcher.LauncherDefaultProgram(Uri) to invoke another metro style app?

    Ref: How to launch a Desktop app from within a Metro app?

    Metro IE is a special app. You cannot invoke an executable from Metro style apps.

    Try this – I have not test yet but may be it will help you..

    Launcher.LaunchFileAsync

    // Path to the file in the app package to launch
    string exeFile = @"C:\Program Files (x86)\Steam\steamapps\common\Skyrim\TESV.exe";
    
    var file = await Windows.ApplicationModel.Package.Current.InstalledLocation.GetFileAsync(exeFile);
    
    if (file != null)
    {
        // Set the option to show the picker
        var options = new Windows.System.LauncherOptions();
        options.DisplayApplicationPicker = true;
    
        // Launch the retrieved file
        bool success = await Windows.System.Launcher.LaunchFileAsync(file, options);
        if (success)
        {
           // File launched
        }
        else
        {
           // File launch failed
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to launch another application from C# application, is there a way to
Is there a way to launch the iPhone/iPad's settings from within your app?
Is there a way to launch an Adobe Air Application from the browser? I
Is there some way to launch a process in non-elevated way from an elevated
Is there a simple way to cause a (full screen) WPF app to launch
Is there a way to launch the IE proxy settings dialog from the Windows
Is there a way to launch a C# application with the following features? It
Is there a way to launch a gnome-terminal from the command line (i.e., using
Is there any way to automatically launch an application on USB attach or CD
I'd like to know if there is a way to create and launch a

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.