What are the necessary items need from creating a deployment project for a windows service? I need to uninstall the previous version of the service before I install the new version.
|
3
|
|
|
|
|
|
MSDN has a tutorial on creating a Windows Service and installer. |
||
|
|
|
|
If you already created an installer, there is not much additional work to be done for a Setup project. It will let you install and uninstall directly out of Visual Studio. There are good tutorials on the web. 2 service-related issues that you will run into, and how to address them:
|
||
|
|
|
|
I use NSIS for my apps, and for installing a service you just use the sc command:
And for uninstall:
Works great. |
||
|
|
|
|
thats it. Installutil.exe lives in the framework folder, somewhere in your Windows directory. It doesn't have to be included with your project. |
||
|
|
|
|
It's pretty much just call:
This stops the old service, uninstalls it, then copies the new into place, installs it, and (optionally) starts it. Most installers make this quite easy. The only other "gotcha" is to make sure your installer is restricted to install onto a local drive, not a network path, if the service is going to be installed to run automatically at startup. |
||||
|
