我已经尝试过命令
sc sdset My.Service (A;;RPWP;;;S-1-1-0)
我认为这应该授予所有用户重新启动 My.Service 的权限
当我运行命令时
错误是:
[SC] ConvertStringSecurityDescriptorToSecurityDescriptor FAILED 87:
wrong parameter
我究竟做错了什么?
编辑:
sc sdset My.Service D:(A;;RPWP;;;S-1-1-0)
sc 成功,但 net.exe 和 sc.exe 给出权限被拒绝
答案1
您需要在所有内容前面加上 D:,如下所示:
sc sdset My.Service D:(A;;RPWP;;;S-1-1-0)