启动禁用的 Windows 服务?

发布于 2024-08-31 03:59:19 字数 62 浏览 5 评论 0原文

如何从命令行启动禁用的 Windows 服务?

NET START“服务”不适用于禁用的服务

How do I start a disabled windows service from command line?

NET START "Service" doesn't work on disabled services

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

漫雪独思 2024-09-07 03:59:19

打开命令行(cmd.exe)并使用此命令:

sc config "ServiceName" start= auto

请注意,它不是 start = autostart=autostart =auto

open command line(cmd.exe) and use this:

sc config "ServiceName" start= auto

Becareful, it's not start = auto or start=auto or start =auto.

剪不断理还乱 2024-09-07 03:59:19

您可以使用 sc.exe 实用程序来启用该服务,也可以选择启动它。

要启用服务,您需要设置除禁用之外的任何启动选项:

sc.exe config [ServiceName] start= [option]

开始= {启动|系统|汽车 |需求|已禁用 |延迟自动}

指定服务的启动类型。

boot - 指定由引导加载程序加载的设备驱动程序。

system - 指定在内核期间启动的设备驱动程序
初始化。

auto - 指定每次计算机重新启动时自动启动的服务,并且即使没有人登录到计算机也运行。

demand - 指定必须手动启动的服务。这是默认值。

delayed-auto - 指定在其他自动服务启动后不久自动启动的服务。

然后您可以通过执行以下命令手动运行它:

sc.exe start [ServiceName]

You can use sc.exe utility to enable the service and optionally start it as well.

To enable a service you need to set any start option except disabled:

sc.exe config [ServiceName] start= [option]

start= {boot | system | auto | demand | disabled | delayed-auto}

Specifies the start type for the service.

boot - Specifies a device driver that is loaded by the boot loader.

system - Specifies a device driver that is started during kernel
initialization.

auto - Specifies a service that automatically starts each time the computer is restarted and runs even if no one logs on to the computer.

demand - Specifies a service that must be started manually. This is the default value.

delayed-auto - Specifies a service that starts automatically a short time after other auto services are started.

Then you can manually run it by executing:

sc.exe start [ServiceName]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文