windows服务安装类代码

using System.Collections;
using System.Configuration.Install;
using System.ServiceProcess;
using System.ComponentModel;

namespace WindowsService1
{
 /// <summary>
 /// myInstall 的摘要说明。
 /// </summary>
 ///
 [RunInstaller(true)]
 public class myInstall : Installer
 {

  private ServiceInstaller serviceInstaller;
  private ServiceProcessInstaller processInstaller;
  public myInstall()
  {
   processInstaller = new ServiceProcessInstaller();
   serviceInstaller = new ServiceInstaller();

   processInstaller.Account = ServiceAccount.LocalSystem;
   serviceInstaller.StartType = ServiceStartMode.Automatic;
   serviceInstaller.ServiceName = "WindowsService1";

   Installers.Add(serviceInstaller);
   Installers.Add(processInstaller);
  }
 }
}

posted on 2004-07-02 10:01 陈叙远 阅读(2915) 评论(2)  编辑 收藏

评论

#1楼  回复 引用   

这段内容是放在你原来编写的service的程序里吗?还是要新建一个.cs文件?谢谢
2005-11-07 16:28 | 田[未注册用户]

导航

公告

昵称:陈叙远
园龄:7年8个月
粉丝:1
关注:0

搜索

 
 

常用链接

随笔分类(66)

推荐排行榜