3

我在我的 .net 安装程序应用程序中遇到了一个问题,它将一起安装三个 Windows 应用程序。在这三个应用程序中,一个是 Windows 服务。因此,我的安装程序项目具有来自这三个 Windows 应用程序的三个主要输出。

安装后,所有这些都将按预期安装,安装后 Windows 服务将自动“启动”。

但是,如果我卸载应用程序(当 Windows 服务处于“运行”模式时),安装程序将显示“正在使用的文件”对话框,最终将导致服务未卸载,而其他内容将被删除。但是,如果在卸载之前停止 Windows 服务,它将很好地完成。

我假设发生上述问题是因为安装程序应用程序将尝试删除 service.exe 文件(因为它也捆绑到安装程序中)。

我尝试了以下替代方法:

  1. 我试图通过添加一个我试图停止服务的自定义安装程序来克服这个问题。但是,这似乎也不起作用。原因是,默认的“卸载”操作将在“卸载”自定义操作之前执行。(失败的)

  2. 将 Windows 服务应用程序的“主要输出”的“永久”属性设置为“真”。我假设安装程序将简单地跳过与主要输出相关的文件。但是(失败)

任何人都遇到过这种问题,请分享您的想法。

如何在卸载前停止服务以便卸载成功?

4

1 回答 1

0

我很早以前就遇到过类似的windows服务问题,通过调用WaitForStatus(ServiceControllerStatus)方法解决了。该服务需要一些时间来关闭,并且您在服务完全停止之前继续。Shutdown编写卸载逻辑以及当状态停止时您想做的任何事情。

如果您正在卸载并且想要在卸载之前停止服务,那么您需要覆盖卸载自定义操作,添加代码以停止它,然后调用base.Uninstall. 请记住,WaitForStatus15 秒的限制可能不足以让服务关闭,这取决于它的响应速度以及它在关闭时的作用。还要确保调用(或本例中Dispose()ServiceController关闭),因为如果你不这样做,内部服务句柄将不会立即释放,如果它仍在使用中,则无法卸载服务。

MSDN 链接

这只是如何在 EventLogger 中实现和记录的示例:

public override void Uninstall(System.Collections.IDictionary savedState)
{
 ServiceController controller = new ServiceController("My Service");
 try
 {
  if (controller.Status == ServiceControllerStatus.Running | controller.Status == ServiceControllerStatus.Paused)
  {
   controller.Stop();
   controller.WaitForStatus(ServiceControllerStatus.Stopped, new TimeSpan(0, 0, 0, 30));
   controller.Close();
  }
 }
 catch (Exception ex)
 {
  string source = "My Service Installer";
  string log = "Application";
  if (!EventLog.SourceExists(source))
  {
   EventLog.CreateEventSource(source, log);
  }
  EventLog eLog = new EventLog();
  eLog.Source = source;
  eLog.WriteEntry(string.Concat(@"The service could not be stopped. Please stop the service manually. Error: ", ex.Message), EventLogEntryType.Error);
 }
 finally
 {
  base.Uninstall(savedState);
 }
}
于 2013-01-23T11:58:58.770 回答