show/hide this revision's text 2 corrected the links

Ok, here is what REALLY worked for me, it has been tested on multiple machines with different OS ( Vista, XP, Win2k, Win2003 server )

The code has been taken from http://www.tech-archive.net/Archive/VB/microsoft.public.vb.winapi/2006-08/msg00238.html'>here here so full credit goes to whoever wrote this piece of code.

You can find the source file http://dl.getdropbox.com/u/152585/ServiceInstaller.cs'>here here or you may as well grab http://dl.getdropbox.com/u/152585/ServiceTools.dll'>this this dll that i prepared for you.

Once you add the dll or source file into your project make sure to add the ServiceTools namespace and then you have access to some very handy functionality such as...

//Installs and starts the service
ServiceInstaller.InstallAndStart("MyServiceName", "MyServiceDisplayName", "C:\PathToServiceFile.exe");

//Removes the service
ServiceInstaller.Uninstall("MyServiceName");

//Checks the status of the service
ServiceInstaller.GetServiceStatus("MyServiceName");

//Starts the service
ServiceInstaller.StartService("MyServiceName");

//Stops the service
ServiceInstaller.StopService("MyServiceName");

//Check if service is installed
ServiceInstaller.ServiceIsInstalled("MyServiceName");

I hope this helps.

-Konstantinos

show/hide this revision's text 1

Ok, here is what REALLY worked for me, it has been tested on multiple machines with different OS ( Vista, XP, Win2k, Win2003 server )

The code has been taken from http://www.tech-archive.net/Archive/VB/microsoft.public.vb.winapi/2006-08/msg00238.html'>here so full credit goes to whoever wrote this piece of code.

You can find the source file http://dl.getdropbox.com/u/152585/ServiceInstaller.cs'>here or you may as well grab http://dl.getdropbox.com/u/152585/ServiceTools.dll'>this dll that i prepared for you.

Once you add the dll or source file into your project make sure to add the ServiceTools namespace and then you have access to some very handy functionality such as...

//Installs and starts the service
ServiceInstaller.InstallAndStart("MyServiceName", "MyServiceDisplayName", "C:\PathToServiceFile.exe");

//Removes the service
ServiceInstaller.Uninstall("MyServiceName");

//Checks the status of the service
ServiceInstaller.GetServiceStatus("MyServiceName");

//Starts the service
ServiceInstaller.StartService("MyServiceName");

//Stops the service
ServiceInstaller.StopService("MyServiceName");

//Check if service is installed
ServiceInstaller.ServiceIsInstalled("MyServiceName");

I hope this helps.

-Konstantinos