命令行删除windows 服务

来源:互联网 发布:java微服务架构与实践 编辑:程序博客网 时间:2024/05/22 09:04
sc config 服务名称 start= demand (设为手动)

sc config 服务名称 start= disabled(设为禁用)

sc config 服务名称 start= auto (设为自动)

sc stop/start 服务名称 (停止/开启服务)

sc delete 服务名 (删除服务)
0 0