摘要: 有时,我们安装的windows服务可能是个框架,在同一服务器上可能服务于不同的系统,为了使服务名称不冲突,需要把服务名称更改为可配置。 因为ServiceInstaller能直接设置安装服务的名称和描述,所以很容易就能写出下面的代码:serviceInstaller.ServiceName = ConfigurationManager.AppSetting["ServiceName"];serviceInstaller.Description = ConfigurationManager.AppSetting["ServiceDescription"]; 阅读全文
posted @ 2012-01-12 15:42 vento 阅读(464) 评论(0) 推荐(0) 编辑