En fait j'ai mon service, par exemple, service1.vb:
Code :
- Public Class Service1
- Protected Overrides Sub OnStart(ByVal args() As String)
- EventLog.WriteEntry("Service démarré" )
- End Sub
- Protected Overrides Sub OnStop()
- EventLog.WriteEntry("Service arrété" )
- End Sub
- End Class
|
et service1.designer.vb:
Code :
- Imports System.ServiceProcess
- <Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
- Partial Class Service1
- Inherits System.ServiceProcess.ServiceBase
- 'UserService overrides dispose to clean up the component list.
- <System.Diagnostics.DebuggerNonUserCode()> _
- Protected Overrides Sub Dispose(ByVal disposing As Boolean)
- If disposing AndAlso components IsNot Nothing Then
- components.Dispose()
- End If
- MyBase.Dispose(disposing)
- End Sub
- ' The main entry point for the process
- <MTAThread()> _
- <System.Diagnostics.DebuggerNonUserCode()> _
- Shared Sub Main()
- Dim ServicesToRun() As System.ServiceProcess.ServiceBase
- ' More than one NT Service may run within the same process. To add
- ' another service to this process, change the following line to
- ' create a second service object. For example,
- '
- ' ServicesToRun = New System.ServiceProcess.ServiceBase () {New Service1, New MySecondUserService}
- '
- ServicesToRun = New System.ServiceProcess.ServiceBase() {New Service1}
- System.ServiceProcess.ServiceBase.Run(ServicesToRun)
- End Sub
- 'Required by the Component Designer
- Private components As System.ComponentModel.IContainer
- ' NOTE: The following procedure is required by the Component Designer
- ' It can be modified using the Component Designer.
- ' Do not modify it using the code editor.
- <System.Diagnostics.DebuggerStepThrough()> _
- Private Sub InitializeComponent()
- components = New System.ComponentModel.Container()
- Me.ServiceName = "Service1"
- End Sub
- End Class
|
J'ai ajouté à ce service un class ProjectInstaller.VB pour pouvoir faire du multiinstance:
Avec un petit script d'installation installutil.bat:
Code :
- @echo off
- set SERVICE_HOME=C:\Documents and Settings\mgh\My Documents\Visual Studio 2005\Projects\InstanceName\InstanceName\bin\Debug
- set SERVICE_EXE=InstanceName.exe
- REM the following directory is for .NET 1.1, your mileage may vary
- set INSTALL_UTIL_HOME=C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727
- REM Account credentials if the service uses a user account
- set PATH=%PATH%;%INSTALL_UTIL_HOME%
- cd %SERVICE_HOME%
- echo Installing Service...
- installutil /name=InstanceName1 /account=localsystem %SERVICE_EXE%
- REM installutil /name=InstanceName2 /account=localsystem %SERVICE_EXE%
- REM installutil /name=InstanceName3 /account=localsystem %SERVICE_EXE%
- echo Done.
|
Quand je l'installe, j'ai le bon nom de mon instance, à savoir InstanceName1 qui est donné dans mon fichier .bat
Donc dans la liste des services qui tournent, je vois bien ce nom d'instance.
Par contre, une fois que je vais dans event viewer, j'ai le nom "Service1" qui apparait, comme il est spécifié dans le fichier Service1.Designer.vb avec la ligne
Code :
- Private Sub InitializeComponent()
- components = New System.ComponentModel.Container()
- Me.ServiceName = "Service1"
- End Sub
|
Au lieu de
Code :
- Me.ServiceName = "Service1"
|
, n'est-il pas possible de mettre autre chose qu'un nom fiche, et plutot le nom de mon instance ???
Merci d'avance