博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
用命令 安装/卸载 windows服务(转)
阅读量:5268 次
发布时间:2019-06-14

本文共 1611 字,大约阅读时间需要 5 分钟。

第一种方法:

    1. 开始 ->运行 ->cmd

    2. cd到C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727(Framework版本号按IIS配置)

    3. 安装服务: 运行命令行 InstallUtil.exe E:/test.exe

    卸载服务: 运行命令行 InstallUtil.exe -u E:/test.exe

    这样就能删除了,但如果还是不能删除的话,没关系下面还有一种方法。

    第二种方法:

    运行-->cmd-->到c:\windows\system32文件夹下-->输入sc delete <服务名称>,然后就可以把服务卸载了

    这时候,我们可以用另外一个命令来卸载,如下:

    C:\WINDOWS\system32>sc delete MyService

    其中的 MyService 是你的服务的名字,比如如下的服务截图,它的卸载命令就可以如下写:

    sc delete "服务名"

    当然你也可以用这个工具create,start,stop服务。比如,我们就可以用下面的命令,安装服务,并把服务启动起来。

    installutil HongjunGuo.JobsWindowsService.exe

    sc start "服务名"

 

C# 卸载windows服务

 //卸载服务

        private void btnUninstall_Click(object sender, EventArgs e)
        {
            string path = GetWindowsServiceInstallPath("KylintechService");
            string p_Path = path + "\\Kylintech_Service.exe";
            string p_ServiceName = "KylintechService";
            UnInstallService(p_Path, p_ServiceName);
            this.lblStart.Text = "状态:服务已卸载";
        }

        //二、卸载windows服务:

        private void UnInstallService(string filepath, string p_ServiceName)
        {
            try
            {
                if (ServiceIsExisted(p_ServiceName))
                {
                    //UnInstall Service
                    AssemblyInstaller myAssemblyInstaller = new AssemblyInstaller();
                    myAssemblyInstaller.UseNewContext = true;
                    myAssemblyInstaller.Path = filepath;
                    myAssemblyInstaller.Uninstall(null);
                    myAssemblyInstaller.Dispose();
                }
            }
            catch (Exception ex)
            {
                throw new Exception("unInstallServiceError\n" + ex.Message);
            }
        }

        //三、判断window服务是否存在:

        private bool ServiceIsExisted(string serviceName)
        {
            ServiceController[] services = ServiceController.GetServices();
            foreach (ServiceController s in services)
            {
                if (s.ServiceName == serviceName)
                {
                    return true;
                }
            }
            return false;
        }

 

转载于:https://www.cnblogs.com/zqn518/p/3177254.html

你可能感兴趣的文章
Python 环境傻瓜式搭建 :Anaconda概述
查看>>
数据库01 /Mysql初识以及基本命令操作
查看>>
数据库02 /MySQL基础数据类型以及多表之间建立联系
查看>>
Python并发编程04/多线程
查看>>
CF461B Appleman and Tree
查看>>
CF219D Choosing Capital for Treeland
查看>>
杂七杂八的小笔记本
查看>>
51Nod1353 树
查看>>
CF1215E Marbles
查看>>
BZOJ2339 HNOI2011卡农(动态规划+组合数学)
查看>>
octave基本操作
查看>>
axure学习点
查看>>
WPF文本框只允许输入数字[转]
查看>>
dom4j 通用解析器,解析成List<Map<String,Object>>
查看>>
第一个项目--用bootstrap实现美工设计的首页
查看>>
使用XML传递数据
查看>>
TYVJ.1864.[Poetize I]守卫者的挑战(概率DP)
查看>>
0925 韩顺平java视频
查看>>
iOS-程序启动原理和UIApplication
查看>>
SpringMVC入门(二)—— 参数的传递、Controller方法返回值、json数据交互、异常处理、图片上传、拦截器...
查看>>