C# windows服务:

第一种 :通过cmd命令安装、卸载、启动和停止Windows Service(InstallUtil.exe)

步骤:

1。运行--〉cmd:打开cmd命令框

2。在命令行里定位到InstallUtil.exe所在的位置

InstallUtil.exe 默认的安装位置是在C:/Windows/Microsoft.NET/Framework/v2.0.50727里面,所以你要在cmd里通过cd定位到该位置(cd C:/Windows/Microsoft.NET/Framework/v2.0.50727)

3。操作命令:

1). 安装服务命令:在命令行里输入下面的命令:

InstallUtil.exe Path/WinServiceName.exe

其中Path表示ServiceName.exe所在的位置,回车即可

2). 启动服务命令

net start ServiceName

ServiceName是真正的Service的名称(ServiceBase.ServiceName),跟.exe的名称可能一样,也可能不一样。如果不清楚,就到已安装的服务里面找到你的服务,右键属性里面看服务名称

3). 停止服务命令

net stop ServiceName

4). 卸载服务命令:在命令行里输入下面的命令:

InstallUtil.exe /u Path/WinServiceName.exe

其中Path表示ServiceName.exe所在的位置,回车即可

使用VS调用InstallUtil.exe工具,输入参数:
安装:D:\GCAMS\Code\PublicClass\SaveLogWindowsService\bin\Debug\SaveLogWindowsService.exe

启动:cmd--》net start ServiceName或者打开服务管理界面,选择需要启动的服务,右击启动服务

卸载:/U D:\GCAMS\Code\PublicClass\SaveLogWindowsService\bin\Debug\SaveLogWindowsService.exe

创建安装bat文件

安装Socket服务(Server).bat

@echo on
color 2f
mode con: cols=80 lines=25
echo 请按任意键开始安装SocketServer后台服务...
pause
C:\Windows\Microsoft.NET\Framework\v4.0.30319\InstallUtil.exe SocketWindowsService.exe
rem net start SocketServer
sc start SocketServer %1
pause

创建安装bat文件

卸载Socket服务(Server).bat

@echo on
color 2f
mode con: cols=80 lines=25
echo 请按任意键开始卸载SocketServer后台服务...
pause
C:\Windows\Microsoft.NET\Framework\v4.0.30319\InstallUtil.exe -u SocketWindowsService.exe
pause

  

第二种:使用WindowsServiceHelper类进行安装

using System;
using System.Collections.Generic;
using System.Configuration;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.ServiceProcess;
using System.Collections;
using Microsoft.Win32;
using System.Configuration.Install; namespace OperationWinService
{
public static class WindowsServiceHelper
{
#region 已封装Window服务
private static string ServerName = ConfigurationManager.AppSettings["WinServiceName"].ToString();
private static string ExecuteName = ConfigurationManager.AppSettings["ExecuteName"].ToString();
/// <summary>
/// 安装服务
/// </summary>
/// <param name="NameService">Windows服务显示名称</param>
/// <returns>存在返回 true,否则返回 false;</returns>
public static bool InstallService()
{
bool flag = false;
if (!IsServiceIsExisted())
{
try
{
string location = System.Reflection.Assembly.GetExecutingAssembly().Location;
string serviceFileName = location.Substring(, location.LastIndexOf('\\') + ) + ExecuteName + ".exe"; //测试用的绝对路径
//string serviceFileName = @"F:\CM.WebSite\KJLMDemo\bin\Debug\KJLMDemo.exe";
InstallMyService(null, serviceFileName);
flag = true;
}
catch(Exception ex)
{
flag = false;
LogHelper.WriteLog(typeof(WindowsServiceHelper), "InstallService执行错误:" + ex.Message); } }
else
{
flag = true;
LogHelper.WriteLog(typeof(WindowsServiceHelper), "InstallService执行配置服务名称不存在");
}
return flag;
} /// <summary>
/// 卸载服务
/// </summary>
/// <param name="NameService">Windows服务显示名称</param>
/// <returns>存在返回 true,否则返回 false;</returns>
public static bool UninstallService()
{
bool flag = false;
if (IsServiceIsExisted())
{
try
{
string location = System.Reflection.Assembly.GetExecutingAssembly().Location;
string serviceFileName = location.Substring(, location.LastIndexOf('\\') + ) + ExecuteName + ".exe";
//测试用的绝对路径
//string serviceFileName = @"F:\CM.WebSite\KJLMDemo\bin\Debug\KJLMDemo.exe";
UnInstallMyService(serviceFileName);
flag = true;
}
catch (Exception ex)
{
flag = false;
LogHelper.WriteLog(typeof(WindowsServiceHelper), "UninstallService执行错误:" + ex.Message);
}
}
else
{
flag = true;
LogHelper.WriteLog(typeof(WindowsServiceHelper), "UninstallService执行配置服务名称不存在");
}
return flag;
} /// <summary>
/// 检查Windows服务是否存在
/// </summary>
/// <param name="NameService">Windows服务显示名称</param>
/// <returns>存在返回 true,否则返回 false;</returns>
public static bool IsServiceIsExisted()
{
ServiceController[] services = ServiceController.GetServices();
foreach (ServiceController s in services)
{
if (s.ServiceName.ToLower() == ServerName.ToLower())
{
return true;
}
}
return false;
} /// <summary>
/// 安装Windows服务
/// </summary>
/// <param name="stateSaver">集合</param>
/// <param name="filepath">Windows服务程序文件路径</param>
private static void InstallMyService(IDictionary stateSaver, string filePath)
{
AssemblyInstaller AssemblyInstaller1 = new AssemblyInstaller();
AssemblyInstaller1.UseNewContext = true;
AssemblyInstaller1.Path = filePath;
AssemblyInstaller1.Install(stateSaver);
AssemblyInstaller1.Commit(stateSaver);
AssemblyInstaller1.Dispose();
} /// <summary>
/// 卸载Windows服务
/// </summary>
/// <param name="filePath">Windows服务程序文件路径</param>
private static void UnInstallMyService(string filePath)
{
AssemblyInstaller AssemblyInstaller1 = new AssemblyInstaller();
AssemblyInstaller1.UseNewContext = true;
AssemblyInstaller1.Path = filePath;
AssemblyInstaller1.Uninstall(null);
AssemblyInstaller1.Dispose();
} /// <summary>
/// 判断某个Windows服务是否启动
/// </summary>
/// <param name="serviceName">Windows服务显示名称</param>
/// <returns>bool</returns>
public static bool IsServiceStart()
{
bool bStartStatus = false; ServiceController psc = new ServiceController(ServerName); try
{
if (!psc.Status.Equals(ServiceControllerStatus.Stopped))
{
bStartStatus = true;
} return bStartStatus;
}
catch (Exception ex)
{
throw new Exception(ex.Message);
} } /// <summary>
/// 修改服务的启动项 2为自动,3为手动
/// </summary>
/// <param name="startType">2为自动,3为手动</param>
/// <param name="serviceName">Windows服务显示名称</param>
/// <returns>bool</returns>
public static bool ChangeServiceStartType(int startType, string serviceName)
{
try
{
RegistryKey regist = Registry.LocalMachine;
RegistryKey sysReg = regist.OpenSubKey("SYSTEM");
RegistryKey currentControlSet = sysReg.OpenSubKey("CurrentControlSet");
RegistryKey services = currentControlSet.OpenSubKey("Services");
RegistryKey servicesName = services.OpenSubKey(serviceName, true);
servicesName.SetValue("Start", startType);
}
catch (Exception ex)
{
return false;
}
return true; } /// <summary>
/// 启动服务
/// </summary>
/// <param name="serviceName">Windows服务显示名称</param>
/// <returns>bool</returns>
public static bool StartService()
{
bool flag = true;
try
{
if (IsServiceIsExisted())
{
System.ServiceProcess.ServiceController service = new System.ServiceProcess.ServiceController(ServerName);
if (service.Status != System.ServiceProcess.ServiceControllerStatus.Running && service.Status != System.ServiceProcess.ServiceControllerStatus.StartPending)
{
service.Start();
for (int i = ; i < ; i++)
{
service.Refresh();
System.Threading.Thread.Sleep();
if (service.Status == System.ServiceProcess.ServiceControllerStatus.Running)
{
break;
}
if (i == )
{
flag = false;
}
}
}
}
else
{
flag = false;
}
}
catch(Exception ex)
{
LogHelper.WriteLog(typeof(WindowsServiceHelper), "StartService执行错误:" + ex.Message);
}
return flag;
} /// <summary>
/// 停止服务
/// </summary>
/// <param name="serviceName">Windows服务显示名称</param>
/// <returns>bool</returns>
public static bool StopService()
{
bool flag = true;
try
{
if (IsServiceIsExisted())
{
System.ServiceProcess.ServiceController service = new System.ServiceProcess.ServiceController(ServerName);
if (service.Status == System.ServiceProcess.ServiceControllerStatus.Running)
{
service.Stop();
for (int i = ; i < ; i++)
{
service.Refresh();
System.Threading.Thread.Sleep();
if (service.Status == System.ServiceProcess.ServiceControllerStatus.Stopped)
{
break;
}
if (i == )
{
flag = false;
}
}
}
}
else
{
flag = false;
}
}
catch(Exception ex)
{
LogHelper.WriteLog(typeof(WindowsServiceHelper), "StopService执行错误:" + ex.Message);
}
return flag;
}
#endregion
}
}

c# 安装windows服务的更多相关文章

  1. 安装windows服务批处理代码

    批处理是DOS时代比较常用的方法之一,目前来说也是一种高效的方法,复制代码到文本文件中,保存并修改文件扩展名为“*.bat”. 安装windows服务批处理代码如下: @echo off set fi ...

  2. 无法从命令行或调试器启动服务,必须首先安装Windows服务(使用installutil.exe),然后用ServerExplorer、Windows服务器管理工具或NET START命令启动它

    无法从命令行或调试器启动服务,必须首先安装Windows服务(使用installutil.exe),然后用ServerExplorer.Windows服务器管理工具或NET START命令启动它 1. ...

  3. .net安装windows服务配置文件config

    .net安装windows服务 : 在windows服务的项目(WindowsService1)代码文件中有一个app.config 配置文件,可以通过此文件进行时间等的更改而无需重新生成项目:那我们 ...

  4. .net安装windows服务和生产webservice

    安装windows服务 1.打开cmd对话框. 2.输入 cd WINDOWS\Microsoft.NET\Framework64\v2.0.50727\ 3.回车 4.输入InstallUtil.e ...

  5. TopSelf安装Windows服务提示:执行未经授权的操作。。

    在一个项目中用到了八九个服务,服务的执行时间也是五花八门,有的年末执行一次,有的月中执行一次,有的月末最后一天执行一次,有的月初连续执行5天, 有的每天晚上执行,...还好各个服务并没有严格的关联关系 ...

  6. mysql下载和安装Windows服务

    一.下载mysql:https://dev.mysql.com/downloads/mysql/,解压拷贝到D:\software\mysql-8.0.13-winx64 二.在D:\software ...

  7. 【C#】安装windows服务

    参考:http://blog.csdn.net ,http://blog.csdn.net/dyzcode 1.新建 visual studio insaller 项目2.添加 [文件系统]3.添加 ...

  8. 批处理安装Windows服务,提示"InstallUtil.exe"不是内部命令也不是外部命令解决方式

    今天在测试一个C#写的windows服务的时候,在用bat进行调用cmd安装的时候, cd C:\Windows\Microsoft.NET\Framework\v2.0.50727 InstallU ...

  9. MongoDB安装Windows服务

    由于官方下载较慢.这里提供一个个人百度共享网盘地址: http://pan.baidu.com/s/1mhHW0nI mongodb-win32-x86_64-3.2.3 使用以下命令将MongoDB ...

随机推荐

  1. Zookeeper实战之嵌入式执行Zookeeper集群模式

    非常多使用Zookeeper的情景是须要我们嵌入Zookeeper作为自己的分布式应用系统的一部分来提供分布式服务.此时我们须要通过程序的方式来启动Zookeeper.此时能够通过Zookeeper ...

  2. 新版Sublime text3注册码被移除的解决办法

    Sublime Text是风靡世界的文本编辑器,支持多种编程语言,启动时间短,打开文件速度快,插件丰富,让很多程序员爱不释手.但是,对于未注册的Sublime Text, 经常在保存的时候会弹出一个烦 ...

  3. Net程序调试

    Net程序调试 前言 作为一个.net开发工程师,不管是在写桌面程序.服务程序或web程序,在开发阶段,我们必须非常熟悉vs的动态调试技能,当然web程序可能还需要调试前端的脚本或样式,这不在本文的讨 ...

  4. 将asp.net core2.0项目部署在IIS上运行

    原文:将asp.net core2.0项目部署在IIS上运行 前言:  与ASP.NET时代不同,ASP.NET Core不再是由IIS工作进程(w3wp.exe)托管,而是独立运行的.它独立运行在控 ...

  5. STS开发环境搭建与配置

    STS开发环境搭建与配置 (2012-04-11 07:24:51) 转载▼ 1.   环境准备 安装JDK.MAVEN 1.1.        下载 下载sprdfingsource-tool-su ...

  6. Vagi单点登录1.0

    Vagi是一款基于CAS(CAS v4)的Web应用单点登录系统.(cas web https://github.com/Jasig/cas) 对数据库用户存储支持 加入登录验证码 新浪微博和QQ互联 ...

  7. JSP的C标签遍历Map数据

    JSP的C标签遍历Map数据 Map可以实现较为丰富的数据封装. 第一种: 控制器传递到页面的map格式如下: Map<String, User> dataMap = new HashMa ...

  8. System.getProperty()获取系统的配置信息(系统变量)

    原文地址:http://www.jsjtt.com/java/Javajichu/105.html 此处记录备用. 1. 通过System.getProperty()可以获取系统的配置信息,Syste ...

  9. 监控Nginx服务的Shell脚本

    Nginx 虽然处理并发量比 apache 确实要强点,但它这种 php-cgi 模式不是太稳定,这点网上也有朋友总结了,我在实现项目中也感受到了. 我们一台支付机,偶尔会出现以下情况的:php-cg ...

  10. POJ 2418-Hardwood Species(map)

    Hardwood Species Time Limit: 10000MS   Memory Limit: 65536K Total Submissions: 18770   Accepted: 740 ...