启动禁用的 Windows 服务?
如何从命令行启动禁用的 Windows 服务?
NET START“服务”不适用于禁用的服务
How do I start a disabled windows service from command line?
NET START "Service" doesn't work on disabled services
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
打开命令行(cmd.exe)并使用此命令:
请注意,它不是
start = auto
或start=auto
或start =auto
。open command line(cmd.exe) and use this:
Becareful, it's not
start = auto
orstart=auto
orstart =auto
.您可以使用
sc.exe
实用程序来启用该服务,也可以选择启动它。要启用服务,您需要设置除禁用之外的任何启动选项:
然后您可以通过执行以下命令手动运行它:
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:
Then you can manually run it by executing:
您可以使用 sc 命令
http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/sc.mspx?mfr=true
u can use the sc command
http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/sc.mspx?mfr=true