Vous n'avez pas besoin installutil.exe
et vous n'avez probablement même pas le droit de le redistribuer.
Voici comment je procède dans mon application :
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());
}
}
Fondamentalement, vous pouvez faire en sorte que votre service s'installe/désinstalle de lui-même en utilisant ManagedInstallerClass
comme indiqué dans mon exemple.
Il suffit alors d'ajouter dans votre InnoSetup script quelque chose comme ceci :
[Run]
Filename: "{app}\MYSERVICE.EXE"; Parameters: "--install"
[UninstallRun]
Filename: "{app}\MYSERVICE.EXE"; Parameters: "--uninstall"
0 votes
Je pense que vous devez utiliser la section [Run]. Voir aquí