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

前端 未结 2 1721
臣服心动
臣服心动 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: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

提交回复
热议问题