代码之家  ›  专栏  ›  技术社区  ›  davidcl

如何在Visual Basic.NET速成版中安装Windows服务?

  •  1
  • davidcl  · 技术社区  · 15 年前

    编辑:我要开始悬赏这个问题。目前,我已经开始使用VS2010 Pro Beta开发我的应用程序,但我真的希望它能够用Express版本构建,因为我们通常不是.NET商店,即使有一两个开发人员使用了VS Pro,它也不会提供给我们的整个团队。

    要成为公认的答案并领取奖金,您必须提供示例代码和说明,以允许使用VB 2008速成版安装和卸载Windows服务。您不一定需要从我的代码开始(但其要点包括在下面)。


    我已经编写了一个vb.net应用程序,希望作为服务运行。目前我使用的是vb.net Express Edition(2008),它没有随“服务”模板一起提供,但我添加了一个服务类(继承自ServiceBase)和一个安装程序类(继承自Installer);在这两种情况下,我都遵循msdn的示例代码。不幸的是,我无法让此代码作为服务进行安装和运行。

    这段代码的核心是一个名为sampleListener的TCP侦听器类。如果我将sampleListener类设置为启动对象并运行我的项目,那么它作为控制台应用程序运行良好。

    有一个服务类(在下面),它只启动sampleListener。

    Public Class sampleSocketService
        Inherits System.ServiceProcess.ServiceBase
    
        Public Sub New()
            Me.ServiceName = "sample Socket Service"
            Me.CanStop = True
            Me.CanPauseAndContinue = True
            Me.AutoLog = True
        End Sub
    
        Shared Sub Main()
            System.ServiceProcess.ServiceBase.Run(New sampleSocketService)
        End Sub
    
        Protected Overrides Sub OnStart(ByVal args() As String)
            sampleListener.Main()
        End Sub
    
    End Class
    

    还有一个安装程序类,我认为它是我问题的根源。这是我最初编写的安装程序类。

    Imports System
    Imports System.Collections
    Imports System.Configuration.Install
    Imports System.ServiceProcess
    Imports System.ComponentModel
    
    <RunInstallerAttribute(True)> _
    Public Class sampleSocketServiceInstaller
        Inherits Installer
        Private serviceInstaller1 As ServiceInstaller
        Private processInstaller As ServiceProcessInstaller
    
        Public Sub New()
            ' Instantiate installers for process and services.
            processInstaller = New ServiceProcessInstaller()
            serviceInstaller1 = New ServiceInstaller()
    
            processInstaller.Account = ServiceAccount.LocalSystem
            serviceInstaller1.StartType = ServiceStartMode.Automatic
    
            ' ServiceName must equal those on ServiceBase derived classes.            
            serviceInstaller1.ServiceName = "sample Socket Service"
    
            ' Add installers to collection. Order is not important.
            Installers.Add(serviceInstaller1)
            Installers.Add(processInstaller)
        End Sub
    End Class
    

    在此上运行installutil.exe会生成以下消息:

    An exception occurred during the Install phase.
    System.Security.SecurityException: The source was not found, but some or all event logs could not be searched.  Inaccessible logs: Security.
    

    这看起来像是一个安全问题,但我正在使用“以管理员身份运行”打开的命令窗口中运行。

    我尝试了一个简单得多的安装程序类,基于一个在线示例:

    Imports System.ComponentModel
    Imports System.Configuration.Install
    
    <RunInstaller(True)> Public Class ProjectInstaller
        Inherits System.Configuration.Install.Installer
    
    End Class
    

    这看起来非常简单,我不知道它可能如何工作,事实上它没有。但是,当使用此版本的Installer类在项目上运行InstallUtil.exe时,InstallUtil.exe不会抛出错误消息,并报告服务已成功安装。

    我怀疑我的安装程序类中需要一些代码来完成我第一个示例中的一些工作,但不会执行导致错误的任何部分。

    有什么建议吗?

    (为了清晰起见,已对其进行了广泛编辑,并添加了最初未包含的代码示例)

    3 回复  |  直到 13 年前
        1
  •  6
  •   Nicky Waites    15 年前

    这似乎对我有用,但我没有添加到您自己的代码中。

    创建两个文件:service1.vb和projectinstaller.vb。通常,Service1和ProjectInstaller设置为分部类,但为了在此处发布,它们不是。我不认为它有任何副作用,但其他人可以对此发表评论。

    我通常用BAT文件处理安装/卸载。

    向项目添加两个引用

    系统服务过程
    system.configuration.install(系统配置安装)

    Service 1.VB

    Imports System.ServiceProcess
    
    Public Class Service1
    Inherits System.ServiceProcess.ServiceBase
    
    Protected Overrides Sub OnStart(ByVal args() As String)
    End Sub
    
    Protected Overrides Sub OnStop()
    End Sub
    
    <System.Diagnostics.DebuggerNonUserCode()> _
    Protected Overrides Sub Dispose(ByVal disposing As Boolean)
        Try
            If disposing AndAlso components IsNot Nothing Then
                components.Dispose()
            End If
        Finally
            MyBase.Dispose(disposing)
        End Try
    End Sub
    
    <MTAThread()> _
    <System.Diagnostics.DebuggerNonUserCode()> _
    Shared Sub Main()
        Dim ServicesToRun() As System.ServiceProcess.ServiceBase
    
        ServicesToRun = New System.ServiceProcess.ServiceBase() {New Service1}
    
        System.ServiceProcess.ServiceBase.Run(ServicesToRun)
    End Sub
    
    Private components As System.ComponentModel.IContainer
    
    <System.Diagnostics.DebuggerStepThrough()> _
    Private Sub InitializeComponent()
        components = New System.ComponentModel.Container()
        Me.ServiceName = "Service1"
    End Sub
    
    End Class
    

    项目安装程序.vb

    Imports System.ComponentModel
    Imports System.Configuration.Install
    
    <System.ComponentModel.RunInstaller(True)> _
    Public Class ProjectInstaller
    Inherits System.Configuration.Install.Installer
    
    Public Sub New()
        MyBase.New()
    
        InitializeComponent()
    
    End Sub
    
    <System.Diagnostics.DebuggerNonUserCode()> _
    Protected Overrides Sub Dispose(ByVal disposing As Boolean)
        Try
            If disposing AndAlso components IsNot Nothing Then
                components.Dispose()
            End If
        Finally
            MyBase.Dispose(disposing)
        End Try
    End Sub
    
    Private components As System.ComponentModel.IContainer
    
    <System.Diagnostics.DebuggerStepThrough()> _
    Private Sub InitializeComponent()
        Me.ServiceProcessInstaller1 = New System.ServiceProcess.ServiceProcessInstaller
        Me.ServiceInstaller1 = New System.ServiceProcess.ServiceInstaller
    
        Me.ServiceProcessInstaller1.Account = System.ServiceProcess.ServiceAccount.LocalSystem
        Me.ServiceProcessInstaller1.Password = Nothing
        Me.ServiceProcessInstaller1.Username = Nothing
    
        Me.ServiceInstaller1.ServiceName = "Service1"
        Me.ServiceInstaller1.StartType = System.ServiceProcess.ServiceStartMode.Automatic
    
        Me.Installers.AddRange(New System.Configuration.Install.Installer() {Me.ServiceProcessInstaller1, Me.ServiceInstaller1})
    
    End Sub
    Friend WithEvents ServiceProcessInstaller1 As System.ServiceProcess.ServiceProcessInstaller
    Friend WithEvents ServiceInstaller1 As System.ServiceProcess.ServiceInstaller
    
    End Class
    

    安装蝙蝠

    C:
    CD \WINDOWS\Microsoft.NET\Framework\v2.0.50727
    installutil "C:\Visual Studio 2008\Projects\....\Temp.exe"
    pause
    NET START Service1
    

    失速蝙蝠

    C:
    CD \WINDOWS\Microsoft.NET\Framework\v2.0.50727
    NET STOP Service1
    installutil /u "C:\Visual Studio 2008\Projects\....\Temp.exe"
    

    希望这对你有用

        3
  •  0
  •   Jim W    15 年前

    你能做到,但我对你的解释有点困惑。您是安装了服务,还是尝试将服务作为控制台应用程序运行?您需要安装服务,使其注册并从服务管理器运行。或者,您可以构建一个“main”方法来运行onstart方法中的代码,但是您不能仅通过将服务类设置为启动方法来在调试模式下调用onstart/onstop/pause等方法。

    你能发布你的服务类吗(或者至少足够让我们看到你的代码)?