I'm working on a Metro style application in the new WinRT (.NET 4.5) framework for Windows 8, and I was wondering if it would be possible somehow for an application (through the registry or some other means) to register itself to start up when Windows starts as well.

I haven't been able to find anything about this anywhere else, only for Windows 7 or below, with normal-style applications.

link|improve this question

You mean microsoft disables all the common approaches for applications to start on boot and redid the windows service model? I dont think so - back to readin the windows programming documentation, page one onward. There are a couple of ways to autoamtically start applications when a user logs on or the system boots. – TomTom Sep 29 '11 at 16:57
1  
@TomTom: WinRT is a different API from Win32. The question is whether you can control these things from WinRT, not how you can do it from a generic Windows app. :) – jalf Sep 29 '11 at 17:01
3  
@TomTom: No it isn't. Not if you're planning to run on an ARM CPU, or on a tablet. It's there on a traditional x86 desktop Windows machine, but if you plan to use WinRT it might be to allow your app to run on platforms where Win32 is not available. (The kernel has nothing to do with it btw. Win32 isn't the kernel either) – jalf Sep 29 '11 at 17:04
2  
@jalf: What makes you think there's no Win32 API on Windows ARM? – Gabe Sep 29 '11 at 17:23
1  
@Gabe: That's how I understood their statement. I could be wrong. But keep in mind that Microsoft definitely wants applications to be rewritten for the primary ARM target (tablets). They want to force you to use Metro there, and they want to avoid hastily ported Win32 apps on their shiny new platform. They are not going to port IE or Office as-is to ARM, because those need to be rewritten to work well on a touch-based platform. – jalf Sep 30 '11 at 7:11
show 10 more comments
feedback

3 Answers

up vote 12 down vote accepted

There is no way to make a Metro style application launch at boot. The user will have to invoke the application from the start screen. Metro style applications cannot be services and so launching them at boot time doesn't seem like the right approach any more than launching Microsoft Word or Adobe Photoshop at boot time would be.

link|improve this answer
feedback

Microsoft's goal with Metro-style apps is that the user is always in control. Therefore, Metro-style apps cannot activate themselves when a machine boots up. Furthermore, traditional Win32/.NET desktop code cannot interact with Metro-style apps and so cannot start a Metro-style app behind the scenes.

That said, if your app has registered itself as the handler for the rendering of its own tile, then it gets called periodically and is asked to re-render its tile's content so it should always be able to show its latest status/news/info to the user when they view their start page.

link|improve this answer
how exactly do you do this: "That said, if your app has registered itself as the handler for the rendering of its own tile, then it gets called periodically and is asked to re-render its tile's content" – blucz Feb 10 at 4:30
feedback

I think you could have all your star tup stuff running as a service that exposes the appropriate WinRT level connectivity. Then the user only needs to fir up the client app.

Goo separation too.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.