Answers:
在服务项目中,执行以下操作:
现在您需要创建一个安装项目。最好的办法是使用设置向导。
右键单击您的解决方案并添加一个新项目:Add> New Project> Setup and Deployment Projects> Setup Wizard
一个。对于不同版本的Visual Studio,这可能会略有不同。b。Visual Studio 2010它位于:安装模板>其他项目类型>安装和部署> Visual Studio安装程序
在第二步中,选择“为Windows应用程序创建安装程序”。
在第三步中,选择“来自...的主要输出”
单击以完成。
接下来,编辑安装程序以确保包含正确的输出。
您可以通过右键单击解决方案中的Installer项目并选择Properties来编辑安装程序输出名称。将“输出文件名:”更改为所需的任何名称。通过选择安装项目以及并查看属性窗口,您可以编辑Product Name
,Title
,Manufacturer
,等...
下一步构建您的安装程序,它将生成一个MSI和setup.exe。选择您要用来部署服务的任何一个。
Service name contains invalid characters, is empty, or is too long (max length = 80)
添加安装程序时出现错误,请再次在灰色区域中单击鼠标右键,转到“属性”并确保已设置“服务名称”值。
我遵循Kelsey的第一步,将安装程序类添加到我的服务项目中,但是我没有创建MSI或setup.exe安装程序,而是使服务自行安装/卸载。这是我的一项服务中的一些示例代码,您可以将其用作起点。
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;
}
Windows Application
和启动对象:(none)
。我必须将Output type更改为Console Application
并设置启动对象,例如myservice.Program
。如果我不知道可能存在的后果,请告知。
Nor Kelsey和Brendan解决方案均不适用于Visual Studio 2015社区。
这是我使用安装程序创建服务的简要步骤:
->
New->
Project双击serviceInstaller1。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安装程序项目” VS扩展。这将为您提供其他Visual Studio Installer项目模板。https://marketplace.visualstudio.com/items?itemName=VisualStudioProductTeam.MicrosoftVisualStudio2017InstallerProjects#overview
要安装Windows服务,您可以添加一个新的安装向导类型的项目,并按照Kelsey的回答https://stackoverflow.com/a/9021107/1040040的步骤进行操作
Windows Installer社区将InstallUtil类(ServiceInstaller)视为反模式。这是一个脆弱的过程,没有经过重新设计,完全忽略了Windows Installer内置对服务的支持这一事实。
Visual Studio部署项目(在Visual Studio的下一发行版中也没有高度重视和弃用)没有对服务的本机支持。但是它们会消耗合并模块。因此,我将看一下这篇博客文章,以了解如何使用Windows Installer XML创建一个可以表示服务的合并模块,然后在您的VDPROJ解决方案中使用该合并模块。