如何使用自定义操作删除服务?

时间:2015-06-27 00:25:29

标签: c# visual-studio-2013 windows-services custom-action setup-deployment

按照我发现的here,我能够构建一个安装和部署项目,该项目可以正确安装我正在使用的服务。 不幸的是,在更新应用程序时(以及可能还有随附的服务),关于如何卸载服务的信息绝对没有。

如何将卸载程序添加到服务项目安装程序?

在ProjectInstaller类中,我添加了以下代码:

[System.Security.Permissions.SecurityPermission( System.Security.Permissions.SecurityAction.Demand )]
public override void Uninstall( IDictionary savedState ) {
    base.Uninstall( savedState );
    try { this.TRSInstaller.Uninstall( savedState ); } catch { }
}

我必须这样做,因为在没有try / catch的情况下尝试它会导致服务被正确删除,但是抛出的异常不允许我删除整个程序,所以我不能安装新版本。

但是,这不会删除该服务。

这是VS吐出的ProjectInstaller类的代码:

namespace TriviaRetriever {
    partial class ProjectInstaller {
        /// <summary>
        /// Required designer variable.
        /// </summary>
        private System.ComponentModel.IContainer components = null;

        /// <summary> 
        /// Clean up any resources being used.
        /// </summary>
        /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
        protected override void Dispose( bool disposing ) {
            if ( disposing && ( components != null ) ) {
                components.Dispose( );
            }
            base.Dispose( disposing );
        }

        #region Component Designer generated code

        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent( ) {
            this.TRProcessInstaller = new System.ServiceProcess.ServiceProcessInstaller();
            this.TRSInstaller = new System.ServiceProcess.ServiceInstaller();
            // 
            // TRProcessInstaller
            // 
            this.TRProcessInstaller.Account = System.ServiceProcess.ServiceAccount.LocalSystem;
            this.TRProcessInstaller.Password = null;
            this.TRProcessInstaller.Username = null;
            // 
            // TRSInstaller
            // 
            this.TRSInstaller.Description = "Service for automatically downloading your trivia.";
            this.TRSInstaller.DisplayName = "Trivia Retriever";
            this.TRSInstaller.ServiceName = "TriviaRetriever";
            // 
            // ProjectInstaller
            // 
            this.Installers.AddRange(new System.Configuration.Install.Installer[] {
            this.TRProcessInstaller,
            this.TRSInstaller});

        }

        #endregion

        private System.ServiceProcess.ServiceProcessInstaller TRProcessInstaller;
        private System.ServiceProcess.ServiceInstaller TRSInstaller;
    }
}

namespace TriviaRetriever {
    [RunInstaller( true )]
    public partial class ProjectInstaller : System.Configuration.Install.Installer {
        public ProjectInstaller( ) {
            InitializeComponent( );
        }

        [System.Security.Permissions.SecurityPermission( System.Security.Permissions.SecurityAction.Demand )]
        public override void Uninstall( IDictionary savedState ) {
            base.Uninstall( savedState );
            try { this.TRSInstaller.Uninstall( savedState ); } catch { }
        }
    }
}

在卸载应用程序时,我需要做些什么才能成功删除Windows服务? (它们紧密地捆绑在一起;如果不存在,则不应该是另一个)。

1 个答案:

答案 0 :(得分:0)

那篇文章确实告诉你如何进行卸载-Ic潜伏在短语“注意主要输出出现在安装,提交,回滚和卸载下。”这意味着不仅有安装自定义操作还有卸载自定义动作。因此,如果您已添加所有自定义操作节点,那么它就足够了。

此外,您无需从现有卸载调用卸载,因为您使用的是卸载方法,base.Uninstall将卸载该服务。请注意,卸载不会尝试停止服务,因此可能需要重新启动才能完全卸载服务。

使用RemovePreviousVersions升级升级服务非常困难,因为他们更改了VS 2008中的升级行为。此主题解决了问题和解决方案:

https://social.msdn.microsoft.com/Forums/en-US/b2d1bd22-8499-454e-9cec-1e42c03e2557/how-to-deal-with-error-1001-the-specified-service-already-exists-when-install-a-service-using?forum=winformssetup

放弃使用代码来安装和卸载服务更好。这完全没必要,因为Windows Installer和MSI文件具有内置支持(但VS设置不支持)。有关详细信息,请向下滚动到使用Visual Studio安装服务:

http://www.installsite.org/pages/en/msi/tips.htm