Uninstall C# Windows Service - Using uninstaller -
I have created a setup project for my window service. I install it properly, however, if I uninstall the project (Either by adding / removing programs, or by clicking on the installation project in VS - uninstall), then it does not seem to be deleting the service.
I have to use it
Am I setting something wrong?
In your installer
class (which you call your custom actions) , Make sure that you override the uninstall code
and call & lt; PathToFramework & gt; \ InstallUtil.exe / u & lt; to uninstall the service. PathToServiceExe & gt;
.
Comments
Post a Comment