Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a Windows service (written in .NET) for which I built an installer using WiX 3.7. It serves an infrastructure role, and anyone can write another Windows Service that uses it. Since my service is required to run when any other such services uses it, the installers of other services define my service as their "Service Dependency" during installation.

Unfortunately, Windows seems to allow removing a Windows service even when other services depend on it. I'd like to make my installer give an error and fail to uninstall my service when any other dependent service is still installed on that machine.

I don't know what other services will be built on top of mine, so I can't hard-code any checks.

Is there a way to do this with WiX?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.