Run Metro application on startup?

15,739

Solution 1

The answer from vhanla (Nov 1, '12) has a problem: you're only launching the default application. For example, if I run mailto: then Outlook opens, not Mail.

In Windows 10, there's another way:

If you open the start menu and All Apps, you can normal click and drag (left click) a modern app, to create a shortcut. It doesn't work if you typed the name of the app into search, but it works if you browse to All Apps.

Solution 2

Simply,

Windows + R and run shell:AppsFolder

You will see all apps in this window. Create a shortcut to the desktop, then copy that shortcut to the startup folder available at shell:Startup or found at the following location:

%SystemDrive%\Users\{username}\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup

Solution 3

There are some tricky ways to start these Windows 8 applications, you need to find out its special name and since you cannot launch them with their executable (it only can be run from within Modern UI environment) but this is one way to start some of them.

To launch the calendar application:

%windir%\System32\cmd.exe /c start "" "wlcalendar:"

To launch the people application:

%windir%\System32\cmd.exe /c start "" "wlpeople:"

You can try them from the Win+R as it is launched using cmd.exe

Here a list of some of them I found:

%windir%\System32\cmd.exe /c start "" "xboxgames:"

Just look for their names in Windows registry:

HKCU\Software\Classes

Example:

HKCU\Software\Classes\wlpeople

If they contain their default value with data like the following:

URL:wlpeople

Try with that name with the command shown above.

And just make a shortcut and place it inside Startup folder

Win+R -> shell:startup -> intro

Some of the application cannot be found there, so this is the only method I know for the moment.

[UPDATE] And since those ":" <~ seems like calling a URL and its value contains URL: you can just use its name to launch them.

Example: (try it with Win+R just write its name and hit enter)

wlpeople:

ms-mail: for your mail client
Share:
15,739

Related videos on Youtube

Luke Vo
Author by

Luke Vo

Updated on September 18, 2022

Comments

  • Luke Vo
    Luke Vo over 1 year

    I want to know where the Metro applications (Mail, People, Messages, ...) executable file path is.

    Also, how can I run Mail application when my PC starts?

    • Ramhound
      Ramhound over 11 years
      They all exist or will exist Windows 8 has not actually been release to everyone. Have you check the indivual program's settings?
    • Luke Vo
      Luke Vo over 11 years
      @Ramhound I have checked, there's no Run on startup option in the Settings.
    • cutrightjm
      cutrightjm over 11 years
      I'm probably going to download Windows 8 in a little bit - once I tinker around with it for a while and find a solution, I'll let you know.
  • Naidim
    Naidim about 11 years
    Thanks, that's working for me, but do you know if there's any way to start Metro apps like that but not moving to them, only opening them in the background, but staying on the desktop?
  • ComFreek
    ComFreek over 10 years
    @paradroid I doubt that there is an "official" way to do so. One workaround would be to automatically switch to the desktop after having launched the app.
  • Canadian Luke
    Canadian Luke over 10 years
    Welcome to Super User! Whilst this may theoretically answer the question, it would be preferable to include the essential parts of the answer here, and provide the link for reference.
  • User5910
    User5910 over 6 years
    These "shell" shortcuts are handy. See @Rik's answer in Shell Shortcuts in Windows OS for more.