« Service et csharp » : différence entre les versions
De Banane Atomic
Aller à la navigationAller à la recherche
Ligne 51 : | Ligne 51 : | ||
# Right-click on {{boxx|MyService}} project → Properties | # Right-click on {{boxx|MyService}} project → Properties | ||
# Application tab → Startup object = {{boxx|MyService.Program}} | # Application tab → Startup object = {{boxx|MyService.Program}} | ||
= [https://docs.microsoft.com/en-us/dotnet/framework/windows-services/walkthrough-creating-a-windows-service-application-in-the-component-designer#install-the-service Install the service] = | |||
# Open {{boxx|Developer Command Prompt for VS}} with administrative credentials | |||
<kode lang='msdos'> | |||
cd %UserProfile%\source\repos\MyService\MyService\bin\Debug | |||
installutil MyService.exe | |||
</kode> |
Version du 11 février 2022 à 22:49
Links
Create the project
- File → New → Project
- Windows Service (.NET Framework)
- Rename Service1.cs to MyService.cs
- Double-click on MyService.cs to open the designer → Properties → ServiceName = MyService
Code
MyService.cs |
public partial class MyService : ServiceBase { public MyService() { InitializeComponent(); } protected override void OnStart(string[] args) { } protected override void OnStop() { } } |
Program.cs |
static void Main() { ServiceBase[] ServicesToRun; ServicesToRun = new ServiceBase[] { new MyService() }; ServiceBase.Run(ServicesToRun); } |
Installer
- Right-click on MyService.cs → View Designer
- Right-click on the background → Add Installer
- A new class ProjectInstaller has been added
- Right-click on ProjectInstaller.cs → View Designer
- Description = This service manages the ...
- DisplayName = My service
- StartType = Automatic
- Select serviceProcessInstaller1 → Properties → Account = LocalSystem
Build the service
- Right-click on MyService project → Properties
- Application tab → Startup object = MyService.Program
Install the service
- Open Developer Command Prompt for VS with administrative credentials
Fichier:Msdos.svg | cd %UserProfile%\source\repos\MyService\MyService\bin\Debug installutil MyService.exe |