vote up 2 vote down star

I was searching for ways to change the start-up type of a Windows service and I found 2 ways to do this...

By editing the Registry Or By using the WMI classes

I want to know which one is the best... I want my application to run properly on both Windows and Vista.

flag

59% accept rate
A little context would be helpful. Is your application the service itself (i.e., you need an installer) or an application that configures a service? – tvanfosson Feb 6 at 15:05
Thanks for your question, the editing in the registry was just what I was looking for. – freggel Apr 2 at 10:05

2 Answers

vote up 1 vote down check

You can also use the win32 API directly. I'd definitely recommend the WMI class; it makes it most likely that if there are changes in future versions of windows that your code still works.

link|flag
WMI also has the advantage that in theory it could potentially someday maybe be cross flatform. There isn't much chance that the registry or Win32 API calls ever would be. – EBGreen Feb 6 at 14:51
vote up 1 vote down

I you want to be safe for future versions of Windows, better use WMI.

If you are not thinking beyond Windows 7, I recommend the WinAPI functions (OpenSCManager and ChangeServiceConfig come to mind). I find them easier to understand, and there are tons of code examples on how to use them. WMI on the other hand is still new, and not as well documented.

Just never, ever, edit the registry directly. The WinAPI or WMI interfaces exist to abstract the task from the way Windows handles the data internally. Bypassing them brings the biggest risk of breaking in the future.

link|flag

Your Answer

Get an OpenID
or

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