show/hide this revision's text 2 added 135 characters in body

Please have a look at

http://www.c-sharpcorner.com/UploadFile/sachin.nigam/InstallingWinServiceProgrammatically11262005061332AM/InstallingWinServiceProgrammatically.aspxthis article.


Sometimes you may want to install a Windows Service programmatically, but the target machine does not have InstallUtil.exe.

Add a reference to System.Configuration.Install

Use this code:

public static void InstallService(string ExeFilename)

{

    System.Configuration.Install.AssemblyInstaller Installer = new  System.Configuration.Install.AssemblyInstaller(ExeFilename);

    Installer.UseNewContext = true;

    Installer.Install(null);

    Installer.Commit(null);

}

To uninstall:

public static void UninstallService(string ExeFilename)
{

    System.Configuration.Install.AssemblyInstaller Installer = new  System.Configuration.Install.AssemblyInstaller(ExeFilename);

    Installer.UseNewContext = true;

    Installer.Uninstall(null);

}
show/hide this revision's text 1

Please have a look at

http://www.c-sharpcorner.com/UploadFile/sachin.nigam/InstallingWinServiceProgrammatically11262005061332AM/InstallingWinServiceProgrammatically.aspx

Sometimes you may want to install a Windows Service programmatically, but the target machine does not have InstallUtil.exe.

Add a reference to System.Configuration.Install

Use this code:

public static void InstallService(string ExeFilename)

{

System.Configuration.Install.AssemblyInstaller Installer = new  System.Configuration.Install.AssemblyInstaller(ExeFilename);

Installer.UseNewContext = true;

Installer.Install(null);

Installer.Commit(null);

}

To uninstall:

public static void UninstallService(string ExeFilename) {

System.Configuration.Install.AssemblyInstaller Installer = new  System.Configuration.Install.AssemblyInstaller(ExeFilename);

Installer.UseNewContext = true;

Installer.Uninstall(null);

}