windows service 安装和卸载指令】的更多相关文章

添加服务: cd C:\Windows\Microsoft.NET\Framework\v4.0.30319InstallUtil.exe D:\OneKeyWebSiteDeployment\Service\WindowsServerForBuidingMainSite.exe 卸载服务: cd C:\Windows\Microsoft.NET\Framework\v4.0.30319installutil /u D:\OneKeyWebSiteDeployment\Service\Windo…
Windows服务安装与卸载,使用到了InstallUtil.exe 安装: c: cd "C:\Windows\Microsoft.NET\Framework\v4.0.30319" InstallUtil.exe "D:\OrderService.exe" 卸载: c: cd "C:\Windows\Microsoft.NET\Framework\v4.0.30319" InstallUtil.exe /u "D:\OrderSer…
--C# windows服务安装及卸载   保存BAT文件  执行即可 @SET FrameworkDir=%WINDIR%\Microsoft.NET\Framework@SET FrameworkVersion=v2.0.50727 @SET PATH=%FrameworkDir%\%FrameworkVersion%;%WINDIR%\System32;%PATH%; InstallUtil.exe /u D:\WebCode\SYSFORM008BOOKTICKET\WindowsSer…
1. 安装 新建文本文件,重命名为 ServiceInstall.bat,将 ServiceInstall.bat 的内容替换为: sc create "Verity Platform Device Service" binPath= "%~dp0WindowsService_HardwareDevice.exe" sc description "Verity Platform Device Service" "提供设备连接.FMC 电…
1. 安装 安装 .NET Framework ; 新建文本文件,重命名为 ServiceInstall.bat,将 ServiceInstall.bat 的内容替换为: C:\\Windows\\Microsoft.NET\\Framework\\v4.0.30319\\InstallUtil.exe "%~dp0WindowsService_HardwareDevice.exe" net start "Verity Platform Device Service"…
最近在重构公司的系统,把一些需要独立执行.并不需要人为关注的组件转换为Windows服务,Windows服务在使用的过程中有很多好处,相信这一点,就不用我多说了.但是每次都要建立Windows服务项目,编写服务代码,建立服务的安装程序,然后还要通过InstallUtil.exe这个命令来安装Windows服务,如果要是想卸载也要使用这个命令,只是在InstallUtil.exe这个命令后增加一个参数/u,表示卸载,我相信大家都对这个很熟悉了,我就不多说了. 我为了不想使用这个命令来安装和卸载Wi…
第一种方法: 前提: Service1 中的serviceProcessInstaller1设置 Account为localSystem 1. 开始 ->运行 ->cmd(管理员身份运行) 2. cd到C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727(Framework版本号按IIS配置) 3. 安装服务: 运行命令行 InstallUtil.exe E:/test.exe     卸载服务: 运行命令行 InstallUtil.exe -u E:/t…
win+R输入cmd,以管理员身份运行cmd: 安装: 1.cd C:\Windows\Microsoft.NET\Framework\v4.0.30319   回车 2.输入(InstallUtil.exe的路径,注意InstallUtil.exe的版本号需要和项目的版本号相同)InstallUtil.exe D:\demo\test\bin\Debug\Test.exe(项目的路径): 启动windows服务 net start TestServive(服务名称) 或者按"WIN+R&quo…
using System;using System.Diagnostics;using System.Linq;using System.ServiceProcess; namespace ScmWrapper{    public class ServiceHandler    {        #region 安装服务 /// <summary>          /// 安装服务          /// </summary>          public static b…
首先管理员身份进入cmd cd C:\Windows\Microsoft.NET\Framework64\v4.0.30319\ 进入C:\Windows\Microsoft.NET\Framework64\v4.0.30319\ 因为installutil.exe目录在此文件下 安装:installutil.exe F:\xxxk\bin\Debug\xxxx.exe 卸载:installutil.exe /u F:\xxxk\bin\Debug\xxxx.exe…