Visual Studioを使用して作成したWindowsサービスのインストーラーを作成するにはどうすればよいですか?
サービスプロジェクトで次の操作を行います。
ここで、セットアッププロジェクトを作成する必要があります。最善の方法は、セットアップウィザードを使用することです。
ソリューションを右クリックして、新しいプロジェクトを追加します。[追加]> [新しいプロジェクト]> [セットアップと展開プロジェクト]> [セットアップウィザード]
a。これは、Visual Studioのバージョンによって若干異なる場合があります。 b。 Visual Studio 2010の場所:インストールテンプレート>その他のプロジェクトタイプ>セットアップと展開> Visual Studioインストーラー
2番目のステップで、「Windowsアプリケーションのセットアップを作成する」を選択します。
次に、インストーラーを編集して、正しい出力が含まれるようにします。
ソリューション内のインストーラープロジェクトを右クリックして[プロパティ]を選択すると、インストーラーの出力名を編集できます。 [出力ファイル名:]を任意の名前に変更します。インストーラプロジェクトも選択し、プロパティウィンドウを見ると、Product Name
、Title
、Manufacturer
などを編集できます。
次にインストーラーをビルドすると、MSIとsetup.exeが生成されます。サービスのデプロイに使用するものを選択します。
Kelseyの最初の一連の手順に従って、サービスプロジェクトにインストーラークラスを追加しますが、MSIまたはsetup.exeインストーラーを作成する代わりに、サービスを自己インストール/アンインストールします。出発点として使用できる私のサービスの1つのサンプルコードを次に示します。
public static int Main(string[] args)
{
if (System.Environment.UserInteractive)
{
// we only care about the first two characters
string arg = args[0].ToLowerInvariant().Substring(0, 2);
switch (arg)
{
case "/i": // install
return InstallService();
case "/u": // uninstall
return UninstallService();
default: // unknown option
Console.WriteLine("Argument not recognized: {0}", args[0]);
Console.WriteLine(string.Empty);
DisplayUsage();
return 1;
}
}
else
{
// run as a standard service as we weren't started by a user
ServiceBase.Run(new CSMessageQueueService());
}
return 0;
}
private static int InstallService()
{
var service = new MyService();
try
{
// perform specific install steps for our queue service.
service.InstallService();
// install the service with the Windows Service Control Manager (SCM)
ManagedInstallerClass.InstallHelper(new string[] { Assembly.GetExecutingAssembly().Location });
}
catch (Exception ex)
{
if (ex.InnerException != null && ex.InnerException.GetType() == typeof(Win32Exception))
{
Win32Exception wex = (Win32Exception)ex.InnerException;
Console.WriteLine("Error(0x{0:X}): Service already installed!", wex.ErrorCode);
return wex.ErrorCode;
}
else
{
Console.WriteLine(ex.ToString());
return -1;
}
}
return 0;
}
private static int UninstallService()
{
var service = new MyQueueService();
try
{
// perform specific uninstall steps for our queue service
service.UninstallService();
// uninstall the service from the Windows Service Control Manager (SCM)
ManagedInstallerClass.InstallHelper(new string[] { "/u", Assembly.GetExecutingAssembly().Location });
}
catch (Exception ex)
{
if (ex.InnerException.GetType() == typeof(Win32Exception))
{
Win32Exception wex = (Win32Exception)ex.InnerException;
Console.WriteLine("Error(0x{0:X}): Service not installed!", wex.ErrorCode);
return wex.ErrorCode;
}
else
{
Console.WriteLine(ex.ToString());
return -1;
}
}
return 0;
}
Visual Studio 2015コミュニティでは、ケルシーもブレンダンのソリューションも機能しません。
インストーラーでサービスを作成する方法を簡単に説明します。
->
New->
ProjectServiceInstaller1をダブルクリックします。 Visual StudioはserviceInstaller1_AfterInstall
イベントを作成します。コードを書く:
private void serviceInstaller1_AfterInstall(object sender, InstallEventArgs e)
{
using (System.ServiceProcess.ServiceController sc = new
System.ServiceProcess.ServiceController(serviceInstaller1.ServiceName))
{
sc.Start();
}
}
ビルドソリューション。プロジェクトを右クリックし、「エクスプローラーでフォルダーを開く」を選択します。 bin\Debugに移動します。
以下のスクリプトでinstall.batを作成します。
:::::::::::::::::::::::::::::::::::::::::
:: Automatically check & get admin rights
:::::::::::::::::::::::::::::::::::::::::
@echo off
CLS
ECHO.
ECHO =============================
ECHO Running Admin Shell
ECHO =============================
:checkPrivileges
NET FILE 1>NUL 2>NUL
if '%errorlevel%' == '0' ( goto gotPrivileges ) else ( goto getPrivileges )
:getPrivileges
if '%1'=='ELEV' (shift & goto gotPrivileges)
ECHO.
ECHO **************************************
ECHO Invoking UAC for Privilege Escalation
ECHO **************************************
setlocal DisableDelayedExpansion
set "batchPath=%~0"
setlocal EnableDelayedExpansion
ECHO Set UAC = CreateObject^("Shell.Application"^) > "%temp%\OEgetPrivileges.vbs"
ECHO UAC.ShellExecute "!batchPath!", "ELEV", "", "runas", 1 >> "%temp%\OEgetPrivileges.vbs"
"%temp%\OEgetPrivileges.vbs"
exit /B
:gotPrivileges
::::::::::::::::::::::::::::
:START
::::::::::::::::::::::::::::
setlocal & pushd .
cd /d %~dp0
%windir%\Microsoft.NET\Framework\v4.0.30319\InstallUtil /i "WindowsService1.exe"
pause
/i
を/u
に変更します)。VS2017の場合、「Microsoft Visual Studio 2017 Installer Projects」VS拡張機能を追加する必要があります。これにより、追加のVisual Studio Installerプロジェクトテンプレートが提供されます。 https://marketplace.visualstudio.com/items?itemName=VisualStudioProductTeam.MicrosoftVisualStudio2017InstallerProjects#overview
Windowsサービスをインストールするには、新しいセットアップウィザードタイプのプロジェクトを追加し、ケルシーの答え https://stackoverflow.com/a/9021107/104004 の手順に従うことができます。
InstallUtilクラス(ServiceInstaller)は、Windows Installerコミュニティによってアンチパターンと見なされています。 Windowsインストーラーにサービスのサポートが組み込まれているという事実を無視するのは、壊れやすいプロセス外の車輪の再発明です。
Visual Studio展開プロジェクト(Visual Studioの次のリリースでは高く評価されず、推奨されていません)には、サービスのネイティブサポートがありません。ただし、マージモジュールを使用できます。したがって、このブログ記事を参照して、サービスを表現できるWindows Installer XMLを使用してマージモジュールを作成し、VDPROJソリューションでそのマージモジュールを使用する方法を理解します。
これは古いスレッドであることは知っていますが、2セントを追加したかっただけです。 VSでサービスプロジェクトを管理する方法は常に嫌いです。これが、私が長年Topshelfを使用してきた理由です。一歩戻り、サービスプロジェクトではなくコンソールプロジェクトを作成してから、Topshelfを追加します。とても簡単です。