5

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.

phaz
  • 298

2 Answers2

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.

jonsca
  • 4,084
Abhinav
  • 89
1

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

Mikhail
  • 3,872