我使用VS2005模板创建了一个C#服务。它工作正常,但Windows服务控件小程序中的服务描述为空。
答案 0 :(得分:26)
创建ServiceInstaller并设置描述
private System.ServiceProcess.ServiceInstaller serviceInstaller =
new System.ServiceProcess.ServiceInstaller();
this.serviceInstaller.Description = "Handles Service Stuff";
答案 1 :(得分:14)
澄清如何在不使用代码的情况下完成此任务:
按照此处所述为项目添加服务安装程序:http://msdn.microsoft.com/en-us/library/ddhy0byf%28v=vs.80%29.aspx
在设计视图中打开安装程序(例如ProjectInstaller.cs)。
单击服务安装程序组件(例如serviceInstaller1)或右键单击它并选择“属性”。
在“属性”窗格中,设置“描述”和/或“显示名称”(这也是您设置“开始类型”等的位置)。描述可能就是您想要更改的内容,但是如果您想要提供更易读的内容DisplayName(服务管理器中的第一列)也可以这样做。
如果需要,请打开自动生成的设计器文件(例如ProjectInstaller.Designer.cs)以验证是否正确设置了属性。
构建解决方案并使用installutil.exe
或其他方式安装。
答案 2 :(得分:4)
在VS2010中创建服务安装程序项目后,需要在VS创建的类中为Install方法添加覆盖,以创建服务描述的注册表项。
using System;
using System.Collections;
using System.ComponentModel;
using System.Configuration.Install;
using System.ServiceProcess;
using Microsoft.Win32;
namespace SomeService
{
[RunInstaller(true)]
public partial class ProjectInstaller : System.Configuration.Install.Installer
{
public ProjectInstaller()
{
InitializeComponent();
}
/// <summary>
/// Overriden to get more control over service installation.
/// </summary>
/// <param name="stateServer"></param>
public override void Install(IDictionary stateServer)
{
RegistryKey system;
//HKEY_LOCAL_MACHINE\Services\CurrentControlSet
RegistryKey currentControlSet;
//...\Services
RegistryKey services;
//...\<Service Name>
RegistryKey service;
// ...\Parameters - this is where you can put service-specific configuration
// Microsoft.Win32.RegistryKey config;
try
{
//Let the project installer do its job
base.Install(stateServer);
//Open the HKEY_LOCAL_MACHINE\SYSTEM key
system = Registry.LocalMachine.OpenSubKey("System");
//Open CurrentControlSet
currentControlSet = system.OpenSubKey("CurrentControlSet");
//Go to the services key
services = currentControlSet.OpenSubKey("Services");
//Open the key for your service, and allow writing
service = services.OpenSubKey("MyService", true);
//Add your service's description as a REG_SZ value named "Description"
service.SetValue("Description", "A service that does so and so");
//(Optional) Add some custom information your service will use...
// config = service.CreateSubKey("Parameters");
}
catch (Exception e)
{
throw new Exception(e.Message + "\n" + e.StackTrace);
}
}
}
}
http://msdn.microsoft.com/en-us/library/microsoft.win32.registrykey.aspx
http://www.codeproject.com/KB/dotnet/dotnetscmdescription.aspx
答案 3 :(得分:2)
答案 4 :(得分:1)
您也可以创建一个ServiceInstaller,然后在服务安装程序的属性窗口中,您将看到可以设置的描述属性。如果您不想编码。