Warning
Please do this operation CAREFULLY, otherwise you may get something wrong with your system.

When we install application into win10, some of them will register their services into windows service list to keep some part of the application available as a daemon. But later when we uninstall the applications, these application-related service entries may be left behind due to a failure of uninstallation. Don't worry, we can easily remove those unnecessary service entries with win10 cmd.

Please see the following screenshot:

I will show you how to remove the service "wwbizsrv" from the list as an example.

Step1: Open cmd console with Administrator permission.

Step2: Enter the cmd line shown as below, and execute it.

sc delete wwbizsrv

Step3: Go back to the service list window to check if the service entry have been removed successfully.

Something go wrong! The service "wwbizsrv" is still in the service list. Why? Okay, there is one more thing I forgot to mention -- "stop the running service".

Information
If the service that you are going to remove is running, you can remove it by the cmd line. And after that, don't forget to stop the service in the service list dialog. The service entry will be gone as long as it stops running.

See, the service entry is gone forever.

Now, I have to bring my wwbizsrv service back 

最新文章

  1. iOS开发-automaticallyAdjustsScrollViewInsets属性
  2. jtable插件api
  3. Java基础详解 (一)Java的类成员访问权限修饰词(以及类访问权限)
  4. 高性能的分布式内存对象缓存系统Memcached
  5. Java之ConnectionPool连接池
  6. 剑指offer-面试题20.顺时针打印矩阵
  7. Java 枚举7常见种用法(转)
  8. vue 父组件传递子组件事件
  9. visual studio调试功能简述
  10. C# 7.0特性
  11. jq鼠标事件
  12. mssql sqlserver 可以存储二进制数据的字段类型详解
  13. LabVIEW(十二):VI本地化-控件标题内容的修改
  14. 四、windows下TortoiseGit的使用与操作
  15. C#高级编程9-第13章 异步编程
  16. SQL Server 2008 事件探查器(SQL SERVER Profiler)
  17. 20155316 Exp1 PC平台逆向破解(5)M
  18. cplusplus 库 在线管理; 类似于 python的 pip install 、nodejs 的npm模块
  19. Extjs4.x Tree树刷新,默认选中展开到最后一次选中的节点
  20. CSAPP学习笔记 第一章 计算机系统漫游

热门文章

  1. PHP之mb_stripos使用
  2. 个人作业1——个人阅读&提问题
  3. JAVA泛型——协变
  4. Windows远程协助相关汇总
  5. webstorm软件小技巧
  6. String.IsNullOrEmpty 与 String.IsNullOrWhiteSpace
  7. OpenGL绘制一个三角形
  8. 三分钟理解Java中字符串(String)的存储和赋值原理
  9. 《JavaWeb从入门到改行》注册时向指定邮箱发送邮件激活
  10. Django2.0之后使用外键时遇到 __init__() missing 1 required positional argument: 'on_delete'