คุณไม่ต้องการinstallutil.exe
และอาจไม่มีสิทธิ์แจกจ่ายซ้ำ
นี่คือวิธีที่ฉันทำในแอปพลิเคชันของฉัน:
using System;
using System.Collections.Generic;
using System.Configuration.Install;
using System.IO;
using System.Linq;
using System.Reflection;
using System.ServiceProcess;
using System.Text;
static void Main(string[] args)
{
if (System.Environment.UserInteractive)
{
string parameter = string.Concat(args);
switch (parameter)
{
case "--install":
ManagedInstallerClass.InstallHelper(new string[] { Assembly.GetExecutingAssembly().Location });
break;
case "--uninstall":
ManagedInstallerClass.InstallHelper(new string[] { "/u", Assembly.GetExecutingAssembly().Location });
break;
}
}
else
{
ServiceBase.Run(new WindowsService());
}
}
โดยทั่วไปคุณสามารถให้บริการของคุณติดตั้ง / ถอนการติดตั้งได้ด้วยตัวเองโดยใช้ManagedInstallerClass
ตามที่แสดงในตัวอย่างของฉัน
จากนั้นก็เป็นเพียงเรื่องของการเพิ่มสคริปต์ InnoSetup ของคุณดังนี้:
[Run]
Filename: "{app}\MYSERVICE.EXE"; Parameters: "--install"
[UninstallRun]
Filename: "{app}\MYSERVICE.EXE"; Parameters: "--uninstall"