window服务
一直学习
这个作者很懒,什么都没留下…
展开
-
如何用C#创建Windows Service
在.Net中用C#创建Windows Service,其实很简单,按照以下的步骤就可以做出一个简单的Windows Service。 1.首先在创建工程的时候选择Windows Service,这样.Net会自动生成Windows Service的框架; 2.完成Windows Service的相应事件,主要是OnStart和OnStop这两个事件,完成后大致代码如下: using Syst转载 2006-10-22 04:30:00 · 789 阅读 · 0 评论 -
windows 服务 安装时System.BadImageFormatException:格式无效
在初始化安装时发生异常:System.BadImageFormatException:格式无效在初始化安装时发生异常:System.BadImageFormatException:格式无效 上面的错误是在安装window 服务时候出现的。后来查过一些资料 解决办法 不要用1.1版本的InstallUtil.exe C:/WINDOWS/Microsoft.NET/Framewor原创 2008-04-15 14:32:00 · 5696 阅读 · 3 评论 -
在VS2005中调试Windows Service Windows服务
1. MSDN推荐的方法 1.1、调试windows服务的初始化、启动 另写一个程序控制服务的初始化和启动 注意:OnStart里写Log, OnStart里要在30秒返回. 不然启动就失败了! 所以OnStart里不要放太多代码! 可以用异步或线程. 1.2、调试windows服务的其他方面 1 ) 安装您的服务 : intallutils xx.exe原创 2012-02-07 09:28:47 · 1413 阅读 · 0 评论 -
不使用installutil.exe安装WINDOWS服务.
using System; using System.Runtime.InteropServices; namespace MyServiceInstaller { class ServiceInstaller { #region Private Variables private string _servicePath; private string _serviceNa转载 2006-10-22 04:05:00 · 1040 阅读 · 0 评论 -
WIN服务 winservice 中 获取安装文件所在路径
如果要获取 服务的安装路径 System.Environment.CurrentDirectory则返回的路径为C:\WINDOWS\system32 上面是服务的路径,不是安装路径 //获取当前目录 string strAssemblyFilePath = Assembly.GetExecutingAssembly().Location;原创 2012-02-27 11:30:35 · 2606 阅读 · 0 评论