windows服务程序(编程*作Windows系统服务)
一、如何用C***编程*作Windows系统服务
我们将研究如何创建一个作为Windows服务的应用程序。内容包含什么是Windows服务,如何创建、安装和调试它们。会用到System.ServiceProcess.ServiceBase命名空间的类。
Windows服务应用程序是一种需要长期运行的应用程序,它对于服务器环境特别适合。它没有用户界面,并且也不会产生任何可视输出。任何用户消息都会被写进Windows**日志。计算机启动时,服务会自动开始运行。它们不要用户一定登录才运行,它们能在包括这个系统内的任何用户环境下运行。通过服务控制管理器,Windows服务是可控的,可以终止、暂停及当需要时启动。
Windows服务,以前的NT服务,都是被作为Windows NT*作系统的一部分引进来的。它们在Windows 9x及Windows Me下没有。你需要使用NT级别的*作系统来运行Windows服务,诸如:Windows NT、Windows 2000 Professional或Windows 2000 Server。举例而言,以Windows服务形式的产品有:Microsoft Exchange、SQL Server,还有别的如设置计算机时钟的Windows Time服务。
我们即将创建的这个服务除了演示什么也不做。服务被启动时会把一个条目信息登记到一个数据库当中来指明这个服务已经启动了。在服务运行期间,它会在指定的时间间隔内定期创建一个数据库项目记录。服务停止时会创建后一条数据库记录。这个服务会自动向Windows应用程序日志当中登记下它成功启动或停止时的记录。
Visual Studio.NET能够使创建一个Windows服务变成相当简单的一件事情。启动我们的演示服务程序的说明概述如下。
2.从一个可用的项目模板列表当中选择Windows服务
4.从工具箱的组件表当中拖动一个Timer对象到这个设计表面上(注意:要确保是从组件列表而不是从Windows窗体列表当中使用Timer)
5.设置Timer属性,Enabled属性为False,Interval属性30000毫秒
6.切换到代码视图页(按F7或在视图菜单当中选择代码),然后为这个服务填加功能
在你类后面所包含的代码里,你会注意到你所创建的Windows服务扩充了System.ServiceProcess.Service类。所有以.NET方式建立的Windows服务必须扩充这个类。它会要求你的服务重载下面的方法,Visual Studio默认时包括了这些方法。
• Dispose–清除任何受控和不受控资源(managed and unmanaged resources)
在这个例子中使用的数据库表是使用下面的T-SQL脚本创建的。我选择SQL Server数据库。你可以很容易修改这个例子让它在Access或任何你所选择的别的数据库下运行。
CREATE TABLE [dbo].[MyServiceLog](
[in_LogId] [int] IDENTITY(1, 1) NOT NULL,
COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[dt_Created] [datetime] NOT NULL
下面就是我命名为MyService的Windows服务的所有源代码。大多数源代码是由Visual Studio自动生成的。
namespace CodeGuru.MyWindowsService
public class MyService: System.ServiceProcess.ServiceBase
private System.Timers.Timer timer1;
/// Required designer variable.
private System.ComponentModel.Container components= null;
// This call is required by the Windows.Forms
// The main entry point for the process
System.ServiceProcess.ServiceBase[] ServicesToRun;
ServicesToRun= new System.ServiceProcess.ServiceBase[]
System.ServiceProcess.ServiceBase.Run(ServicesToRun);
/// Required method for Designer support- do not modify
/// the contents of this method with the code editor.
private void InitializeComponent()
this.timer1= new System.Timers.Timer();
((System.ComponentModel.ISupportInitialize)
new System.Timers.ElapsedEventHandler(this.timer1_Elapsed);
this.ServiceName="My Sample Service";
((System.ComponentModel.ISupportInitialize)
/// Clean up any resources being used.
protected override void Dispose( bool disposing)
/// Set things in motion so your service can do its work.
protected override void OnStart(string[] args)
this.LogMessage("Service Started");
protected override void OnStop()
this.LogMessage("Service Stopped");
* Respond to the Elapsed event of the timer control
private void timer1_Elapsed(object sender,
System.Timers.ElapsedEventArgs e)
this.LogMessage("Service Running");
* Log specified message to database
private void LogMessage(string Message)
SqlConnection connection= null;
connection= new SqlConnection(
"Server=localhost;Database=SampleDatabase;Integrated
Security=false;User Id=sa;Password=;");
"INSERT INTO MyServiceLog(vc_Status, dt_Created)
VALUES('"+ Message+"',getdate())", connection);
int numrows= command.ExecuteNonQuery();
System.Diagnostics.Debug.WriteLine(ex.Message);
Windows服务不同于普通Windows应用程序。不可能简简单单地通过运行一个EXE就启动Windows服务了。安装一个Windows服务应该通过使用.NET Framework提供的InstallUtil.exe来完成,或者通过诸如一个Microsoft Installer(MSI)这样的文件部署项目完成。
创建一个Windows服务,仅用InstallUtil程序去安装这个服务是不够的。你必须还要把一个服务安装程序添加到你的Windows服务当中,这样便于InstallUtil或是任何别的安装程序知道应用你服务的是怎样的配置设置。
1.将这个服务程序切换到设计视图
2.右击设计视图选择“添加安装程序”
3.切换到刚被添加的ProjectInstaller的设计视图
4.设置serviceInstaller1组件的属性:
1) ServiceName= My Sample Service
5.设置serviceProcessInstaller1组件的属性
在完成上面的几个步骤之后,会自动由Visual Studio产生下面的源代码,它包含于ProjectInstaller.cs这个源文件内。
using System.Configuration.Install;
namespace CodeGuru.MyWindowsService
/// Summary description for ProjectInstaller.
public class ProjectInstaller:
System.Configuration.Install.Installer
private System.ServiceProcess.ServiceProcessInstaller
private System.ServiceProcess.ServiceInstaller serviceInstaller1;
/// Required designer variable.
private System.ComponentModel.Container components= null;
// This call is required by the Designer.
// TODO: Add any initialization after the InitComponent call
#region Component Designer generated code
/// Required method for Designer support- do not modify
/// the contents of this method with the code editor.
private void InitializeComponent()
this.serviceProcessInstaller1= new
System.ServiceProcess.ServiceProcessInstaller();
System.ServiceProcess.ServiceInstaller();
this.serviceProcessInstaller1.Account=
System.ServiceProcess.ServiceAccount.LocalSystem;
this.serviceProcessInstaller1.Password= null;
this.serviceProcessInstaller1.Username= null;
this.serviceInstaller1.ServiceName="My Sample Service";
this.serviceInstaller1.StartType=
System.ServiceProcess.ServiceStartMode.Automatic;
System.Configuration.Install.Installer[]
{this.serviceProcessInstaller1, this.serviceInstaller1});
现在这个服务已经生成,你需要把它安装好才能使用。下面*作会指导你安装你的新服务。
1.打开Visual Studio.NET命令提示
2.改变路径到你项目所在的**n\Debug文件夹位置(如果你以Release模式编译则在**n\Release文件夹)
3.执行命令“InstallUtil.exe MyWindowsService.exe”注册这个服务,使它建立一个合适的注册项。
4.右击桌面上“我的电脑”,选择“管理”就可以打计算机管理控制台
5.在“服务和应用程序”里面的“服务”部分里,你可以发现你的Windows服务已经包含在服务列表当中了
6.右击你的服务选择启动就可以启动你的服务了
在每次需要修改Windows服务时,这就会要求你卸载和重新安装这个服务。不过要注意在卸载这个服务前,好确保服务管理控制台已经关闭,这会是一个很好的习惯。如果没有这样*作的话,你可能在卸载和重安装Windows服务时会遇到麻烦。仅卸载服务的话,可以执行相的InstallUtil命令用于注销服务,不过要在后面加一个/u命令开关。
从另外的角度度看,调试Windows服务绝不同于一个普通的应用程序。调试Windows服务要求的步骤更多。服务不能象你对普通应用程序做的那样,只要简单地在开发环境下执行就可以调试了。服务必须首先被安装和启动,这一点在前面部分我们已经做到了。为了便于跟踪调试代码,一旦服务被启动,你就要用Visual Studio把运行的进程附加进来(attach)。记住,对你的Windows服务做的任何修改都要对这个服务进行卸载和重安装。
为了调试程序,有些附加Windows服务的*作说明。这些*作假定你已经安装了这个Windows服务并且它正在运行。
5.在可用进程列表中,把进程定位于你的可执行文件名称上点击选中它
9.在timer1_Elapsed方法里设置一个断点,然后等它执行
现在你应该对Windows服务是什么,以及如何创建、安装和调试它们有一个粗略的认识了。Windows服务的额处的功能你可以自行研究。这些功能包括暂停(OnPause)和恢复(OnContinue)的能力。暂停和恢复的能力在默认情况下没有被启用,要通过Windows服务属性来设置。
二、net. exe无法运行怎么解决
因为配置标识不正确,系统无法开始服务器进程。请检查用户名和密码是设置错误造成的,解决方法为:
1、同时按下win+r键,打开运行窗口,在运行窗口输入Services.msc。
2、在打开的服务窗口中找到“WindowsUpdate”的服务项。
3、双击打开该服务项的属性窗口,把其设置为正在运行。
4、双击打开Windows10的控制面板,点击“程序和功能”的图标。在打开的程序和功能窗口中点击左侧的“启动或关闭Windows功能”的快捷链接。
5、后在打开的窗口中勾选.Net的选项就可以了。
三、C#windows服务
用C#做windows服务变得简单对了===按照下面步骤来就行了
用C#创建Windows服务(Windows Services)
例子服务功能:这个服务在启动和停止时,向一个文本文件中写入一些文字信息。
要创建一个新的 Windows服务,可以从Visual C#工程中选取 Windows服务(Windows Service)选项,给工程一个新文件名,然后点击确定。
你可以看到,向导向工程文件中增加WebService1.cs类:
ü Autolog是否自动写入系统的日志文件
ü CanHandlePowerEvent服务时候接受电源**
ü CanPauseAndContinue服务是否接受暂停或继续运行的请求
ü CanShutdown服务是否在运行它的计算机关闭时收到通知,以便能够调用 OnShutDown过程
ü CanStop服务是否接受停止运行的请求
在.cs代码文件中我们可以看到,有两个被忽略的函数 OnStart和OnStop。
OnStart函数在启动服务时执行,OnStop函数在停止服务时执行。在这里,当启动和停止服务时,向一个文本文件中写入一些文字信息,代码如下:
protected override void OnStart(string[] args)
FileStream fs= new FileStream(@"d:\mcWindowsService.txt", FileMode.OpenOrCreate, FileAccess.Write);
StreamWriter m_streamWriter= new StreamWriter(fs);
m_streamWriter.BaseStream.Seek(0, SeekOrigin.End);
m_streamWriter.WriteLine("mcWindowsService: Service Started"+DateTime.Now.ToString()+"\n");
protected override void OnStop()
FileStream fs= new FileStream(@"d:\mcWindowsService.txt", FileMode.OpenOrCreate, FileAccess.Write);
StreamWriter m_streamWriter= new StreamWriter(fs);
m_streamWriter.BaseStream.Seek(0, SeekOrigin.End);
m_streamWriter.WriteLine(" mcWindowsService: Service Stopped"+DateTime.Now.ToString()+"\n");
第三步:将安装程序添加到服务应用程序
Visual Studio.NET随附有安装组件,可用来安装与服务应用程序相关联的资源。安装组件在正在安装到的系统上注册一项单个的服务,并使服务控制管理器知道该服务的存在。
要正确安装服务,并不需要在安装程序中进行任何特殊编码。但是,如果需要向安装进程添加特殊功能,则可能偶尔需要修改安装程序的内容。
将安装程序添加到服务应用程序的步骤是:
1:在解决方案中,访问要向其中添加安装组件的服务的Design视图。
2:在属性窗口中,单击添加安装程序链接
这时项目中就添加了一个新类 ProjectInstaller和两个安装组件 ServiceProcessInstaller和 ServiceInstaller,并且服务的属性值被**到组件。
3:若要确定如何启动服务,请单击 ServiceInstaller组件并将 StartType属性设置为适当的值。
ü Manual服务安装后,必须手动启动。
ü Automatic每次计算机重新启动时,服务都会自动启动。
4:将serviceProcessInstaller类的Account属性改为 LocalSystem
这样,不论是以哪个用户登录的系统,服务总会启动。
通过从生成菜单中选择生成来生成项目。
注意不要通过按 F5键来运行项目——不能以这种方式运行服务项目。
访问项目中的已编译可执行文件所在的目录。
用项目的输出作为参数,从命令行运行 InstallUtil.exe。在命令行中输入下列代码:
用项目的输出作为参数,从命令行运行 InstallUtil.exe。