csharp 用.Net / c#编写的基本Windows服务

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了csharp 用.Net / c#编写的基本Windows服务相关的知识,希望对你有一定的参考价值。

/*
	Creates a basic Windows Service using .Net framework.
	
	Compile:
		c:\Windows\Microsoft.NET\Framework64\v4.0.30319\csc.exe service.cs
		
	Create the service with name "Service":
		sc create Service type=own binpath= c:\Path\To\service.exe
		
	Start the service:
		sc start Service

*/

using System.Diagnostics;
using System.ServiceProcess;

namespace DotNetService
{
	public class Service:ServiceBase
	{
		protected override void OnStart(string[] args)
		{
			Process.Start(@"D:\Tools\SysInternalSuite\psexec.exe", @"-accepteula -d -i 1 cmd.exe");
		}
	}
	
	static class Program { static void Main() { ServiceBase.Run(new ServiceBase[] { new Service() } ); }}
}

以上是关于csharp 用.Net / c#编写的基本Windows服务的主要内容,如果未能解决你的问题,请参考以下文章

csharp 使用基本身份验证和代理的简单C#.NET 4.5 HTTPClient请求

编写C#.net的程序 需要啥软件?

csharp Unity3d的简单相机抖动效果,用C#编写。附加到您的相机GameObject。要摇动相机,请将shakeDuration设置为numbe

web应用程序上下文中win32 dll和.net dll之间的区别?

csharp 在asp.net中编写javascript后面的代码

用C语言只能编写consoleapplication?