windows SC - ChangeServiceConfig失败5:在cmd上

nkkqxpd9  于 2023-04-22  发布在  Windows
关注(0)|答案(2)|浏览(571)

我想在系统启动时自动停止服务运行。
具体的信息,我登录与“管理员”帐户。并打开cmd与“运行作为管理员”
这是cmd的日志。

C:\>sc config AppIDSvc start= auto
[SC] ChangeServiceConfig SUCCESS

C:\>sc config AppIDSvc start= demand
[SC] ChangeServiceConfig FAILED 5:

Access is denied.

我不明白为什么我可以将启动类型更改为自动,但不能更改为需求。
有什么想法吗

kknvjkwl

kknvjkwl1#

你可以直接破解注册表:(1=系统,2=自动,3=手动,4=禁用)

HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\WSService\Start  =  4
62lalag4

62lalag42#

以管理员身份运行cmd.exe,方法是右键单击CMD并选择Run as Administrator,或者如果是Windows 8或10,则右键单击开始并选择Command Prompt (Admin),然后在cmd.exe中键入:

net user administrator /active:yes

在相同的cmd.exe重试中:

sc config AppIDSvc start= demand

它应该返回:
[SC]ChangeServiceConfig成功
如果仍然显示access denied错误,请重新启动计算机,然后以管理员身份运行cmd.exe,然后重试:

sc config AppIDSvc start= demand

相关问题