26 lines
613 B
C#
26 lines
613 B
C#
|
using System;
|
|||
|
using System.Collections;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.ComponentModel;
|
|||
|
using System.Configuration.Install;
|
|||
|
using System.Linq;
|
|||
|
using System.ServiceProcess;
|
|||
|
|
|||
|
|
|||
|
namespace WindowsService1
|
|||
|
{
|
|||
|
[RunInstaller(true)]
|
|||
|
public partial class ProjectInstaller : System.Configuration.Install.Installer
|
|||
|
{
|
|||
|
public ProjectInstaller()
|
|||
|
{
|
|||
|
InitializeComponent();
|
|||
|
}
|
|||
|
|
|||
|
private void serviceInstaller1_AfterInstall(object sender, InstallEventArgs e)
|
|||
|
{
|
|||
|
new ServiceController(serviceInstaller1.ServiceName).Start();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|