Visual Studio 2005 -> 2008/10 Service Installer Project Upgrade issue

前端 未结 2 1710
臣服心动
臣服心动 2020-12-10 04:29

I\'ve upgraded a [.vdproj MSI generator project built into VS2008] System.Configuration.Install.Installer with a ServiceProcessInstaller and a ServiceInst

相关标签:
2条回答
  • 2020-12-10 04:54

    This should answer your question

    How do I eliminate "The specified service already exists" when I install new versions of my software?

    0 讨论(0)
  • 2020-12-10 04:55

    Does your service (setup) provide a custom action for uninstalling the service?

    An upgrade means that the previously installed product get uninstalled before the new product gets installed. I think the reason for the error is that the old service cannot be removed.

    If your service is written in .NET you might find this article useful: http://www.codeproject.com/KB/install/InstallService.aspx

    0 讨论(0)
提交回复
热议问题