gpt4 book ai didi

windows - "Installation failed due to the absence of a ServiceProcessInstaller"问题

转载 作者:可可西里 更新时间:2023-11-01 12:36:48 29 4
gpt4 key购买 nike

当我开始使用 installutil 安装时出现以下错误,我已经设置了 ServiceInstaller 和 ServiceInstallerProcess,

System.InvalidOperationException: Installation failed due to the absence of a ServiceProcessInstaller. The ServiceProcessInstaller must either be the containing installer, or it must be present in the Installers collection on the same installer as the ServiceInstaller.

关于如何解决这个问题有什么想法吗?

最佳答案

我在 Installer 上遇到了同样的问题,发现在 [YourInstallerClassName].Designer.cs 的 InitializeComponent() 方法中,错误生成的代码缺少添加 ServiceProcessInstaller

        // 
// [YourInstallerClassName]
//
this.Installers.AddRange(new System.Configuration.Install.Installer[] {
this.serviceInstaller1});

在我的案例中只需添加您的 ServiceProcessInstaller:

        // 
// ProjectInstaller
//
this.Installers.AddRange(new System.Configuration.Install.Installer[] {
this.serviceProcessInstaller1, //--> Missing
this.serviceInstaller1});

安装项目正常运行。

关于windows - "Installation failed due to the absence of a ServiceProcessInstaller"问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2765313/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com