Adding Windows Store apps to startup

7,562

Solution 1

Press Win+R to open the Run dialog box, then type in msconfig and press Enter

Go to the startup tab and click on the open Task Manager link. You can disable or enable apps for startup from there.

You can also access the task Manager using Win+X and then selecting task manager

If you are still not able to get it follow this old style approach.

Solution 2

Add a script that will launch the Windows 8 Applications

We will make 2 files, one to launch the apps in general and one to launch our specific applications. We will combine two ideas, using the Windows 8 startup and launching metro applications through scripts.

  1. Open a notepad document and save this script

    Set objShell = WScript.CreateObject("WScript.Shell")
    objShell.SendKeys "^{ESC}"
    WScript.Sleep 1000
    objShell.SendKeys WScript.Arguments.Item(0)
    WScript.Sleep 1000
    objShell.SendKeys "{ENTER}"
    
  2. Make a new file called launch.bat with lines like this. Where store is the name of your app

    metro.vbs store
    
  3. Navigate to the new startup folder at %AppData%\Microsoft\Windows\Start Menu\Programs and add your two files

Share:
7,562

Related videos on Youtube

phaz
Author by

phaz

Updated on September 18, 2022

Comments

  • phaz
    phaz over 1 year

    Possible Duplicate:
    Run Metro application on startup?

    Is there a way to add a Windows Store/Metro/Modern/Whatever app to the Windows startup?

    E.g., the Skype desktop application could be set to start up with Windows. Now I'm using the Skype app for Windows 8, and would like it to start up in a similar fashion.

    • Mamta D
      Mamta D over 11 years
      This may help: (Check ekaj's answer) superuser.com/questions/473224/… and also check this superuser.com/questions/490873/…
    • Justin Love
      Justin Love over 11 years
      You do realise that as soon as you start a second app, the first gets suspended?
    • phaz
      phaz over 11 years
      @MamtaDalal My questions seems to be a duplicate of your first link. The answer seems legit, but I can't get it to work with the Skype app. I guess I will post a new question about my new problem. Thx! :-)
  • phaz
    phaz over 11 years
    this only works for desktop apps (afaik).