gpt4 book ai didi

windows-services - 从非管理员用户帐户启动/停止 Windows 服务

转载 作者:行者123 更新时间:2023-12-03 04:35:52 25 4
gpt4 key购买 nike

我有一个名为 BST 的 WindowsService。我需要授予非管理员用户 UserA 启动/停止此特定服务的权限。我的服务在各种 Windows 操作系统上运行,从 Windows Server 2003 到 Windows 7。

我怎样才能做到这一点?

我在谷歌上搜索并找到了一些关于使用命令 [sc sdset] 授予权限的内容,但我不确定参数。我不想为组设置权限,而只想为特定用户(在本例中为 UserA)设置权限。

最佳答案

下面我汇总了我从非管理员用户帐户启动/停止 Windows 服务的所有知识,如果有人需要知道的话。

主要有两种方法可以启动/停止 Windows 服务。
1.通过登录Windows用户账户直接访问服务。
2. 使用网络服务帐户通过 IIS 访问服务。


启动/停止服务的命令行命令:

C:/> net start <SERVICE_NAME>
C:/> net stop <SERVICE_NAME>

启动/停止服务的 C# 代码:

ServiceController service = new ServiceController(SERVICE_NAME);

//Start the service
if (service.Status == ServiceControllerStatus.Stopped)
{
service.Start();
service.WaitForStatus(ServiceControllerStatus.Running, TimeSpan.FromSeconds(10.0));
}

//Stop the service
if (service.Status == ServiceControllerStatus.Running)
{
service.Stop();
service.WaitForStatus(ServiceControllerStatus.Stopped, TimeSpan.FromSeconds(10.0));
}

注 1:
通过 IIS 访问服务时,创建一个 Visual Studio C# ASP.NET Web 应用程序并将代码放在那里。将 WebService 部署到 IIS 根文件夹 (C:\inetpub\wwwroot\) 就可以了。
通过 url http:///访问它。

1. 直接访问方式

如果您从中发出命令或运行代码的 Windows 用户帐户是非管理员帐户,则您需要为该特定用户帐户设置权限,以便它能够启动和停止 Windows 服务。这就是你如何做到的。
登录到计算机上的管理员帐户,该计算机具有要从中启动/停止服务的非管理员帐户。 打开命令提示符并给出以下命令:
C:/>sc sdshow <SERVICE_NAME>

输出将是这样的:
D:(A;;CCLCSWRPWPDTLOCRRC;;;SY)(A;;CCDCLCSWRPWPDTLOCRSDRCWDWO;;;BA)(A;;CCLCSWLOCRRC;;;IU)(A;;CCLCSWLOCRRC;;;SU)S:(AU;FA;CCDCLCSWRPWPDTLOCRSDRCWDWO;;;WD)

它列出了此计算机上每个用户/组对 的所有权限。
A description of one part of above command is as follows:

D:(A;;CCLCSWRPWPDTLOCRRC;;;SY)

It has the default owner, default group, and it has the Security descriptor control flags (A;;CCLCSWRPWPDTLOCRRC;;;SY):

ace_type - "A": ACCESS_ALLOWED_ACE_TYPE,
ace_flags - n/a,
rights - CCLCSWRPWPDTLOCRRC, please refer to the Access Rights and Access Masks and Directory Services Access Rights
CC: ADS_RIGHT_DS_CREATE_CHILD - Create a child DS object.
LC: ADS_RIGHT_ACTRL_DS_LIST - Enumerate a DS object.
SW: ADS_RIGHT_DS_SELF - Access allowed only after validated rights checks supported by the object are performed. This flag can be used alone to perform all validated rights checks of the object or it can be combined with an identifier of a specific validated right to perform only that check.
RP: ADS_RIGHT_DS_READ_PROP - Read the properties of a DS object.
WP: ADS_RIGHT_DS_WRITE_PROP - Write properties for a DS object.
DT: ADS_RIGHT_DS_DELETE_TREE - Delete a tree of DS objects.
LO: ADS_RIGHT_DS_LIST_OBJECT - List a tree of DS objects.
CR: ADS_RIGHT_DS_CONTROL_ACCESS - Access allowed only after extended rights checks supported by the object are performed. This flag can be used alone to perform all extended rights checks on the object or it can be combined with an identifier of a specific extended right to perform only that check.
RC: READ_CONTROL - The right to read the information in the object's security descriptor, not including the information in the system access control list (SACL). (This is a Standard Access Right, please read more http://msdn.microsoft.com/en-us/library/aa379607(VS.85).aspx)
object_guid - n/a,
inherit_object_guid - n/a,
account_sid - "SY": Local system. The corresponding RID is SECURITY_LOCAL_SYSTEM_RID.

现在我们需要做的是为我们想要的组或用户设置适当的权限来启动/停止 Windows 服务。在这种情况下,我们需要当前的非管理员用户能够启动/停止服务,因此我们将为该用户设置权限。为此,我们需要该特定 Windows 用户帐户的 SID。要获取它,请打开注册表(开始 > regedit)并找到以下注册表项。
LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList

在此之下,这台计算机中的每个用户帐户都有一个单独的 key , key 名称是每个帐户的 SID。 SID 通常的格式为 S-1-5-21-2103278432-2794320136-1883075150-1000。单击每个键,您将在右侧的 Pane 中看到每个键的值列表。找到“ProfileImagePath”,通过它的值可以找到SID所属的用户名。例如,如果帐户的用户名是 SACH,那么“ProfileImagePath”的值将类似于“C:\Users\Sach”。因此,请记下您要为其设置权限的用户帐户的 SID。

注2:
这是一个简单的 C# 代码示例,可用于获取所述键及其值的列表。

//LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList RegistryKey
RegistryKey profileList = Registry.LocalMachine.OpenSubKey(keyName);

//Get a list of SID corresponding to each account on the computer
string[] sidList = profileList.GetSubKeyNames();

foreach (string sid in sidList)
{
//Based on above names, get 'Registry Keys' corresponding to each SID
RegistryKey profile = Registry.LocalMachine.OpenSubKey(Path.Combine(keyName, sid));

//SID
string strSID = sid;
//UserName which is represented by above SID
string strUserName = (string)profile.GetValue("ProfileImagePath");
}

现在我们有了要设置权限的用户帐户的 SID,让我们开始吧。让我们假设用户帐户的 SID 是 S-1-5-21-2103278432-2794320136-1883075150-1000
将 [sc sdshow ] 命令的输出复制到文本编辑器。它看起来像这样:
D:(A;;CCLCSWRPWPDTLOCRRC;;;SY)(A;;CCDCLCSWRPWPDTLOCRSDRCWDWO;;;BA)(A;;CCLCSWLOCRRC;;;IU)(A;;CCLCSWLOCRRC;;;SU)S:(AU;FA;CCDCLCSWRPWPDTLOCRSDRCWDWO;;;WD)

现在,复制上面文本的 (A;;CCLCSWRPWPDTLOCRRC;;;SY) 部分,并将其粘贴在 S:(AU;... 部分之前。然后将那部分更改为文本。这个:
(A;;RPWPCR;;;S-1-5-21-2103278432-2794320136-1883075150-1000)

然后在前面加上 sc sdset ,上面的部分用引号括起来。您的最终命令应如下所示:
sc sdset <SERVICE_NAME> "D:(A;;CCLCSWRPWPDTLOCRRC;;;SY)(A;;CCDCLCSWRPWPDTLOCRSDRCWDWO;;;BA)(A;;CCLCSWLOCRRC;;;IU)(A;;CCLCSWLOCRRC;;;SU)(A;;RPWPCR;;;S-1-5-21-2103278432-2794320136-1883075150-1000)S:(AU;FA;CCDCLCSWRPWPDTLOCRSDRCWDWO;;;WD)"

现在在你的命令提示符中执行它,如果成功它应该给出如下输出:
[SC] SetServiceObjectSecurity SUCCESS

现在我们可以走了!您的非管理员用户帐户已被授予启动/停止服务的权限!尝试登录用户帐户并启动/停止服务,它应该让您这样做。

2.通过IIS方式访问

在这种情况下,我们需要将权限授予 IIS 用户“网络服务”,而不是登录 Windows 用户帐户。过程是一样的,只是命令的参数会改变。由于我们将权限设置为“网络服务”,因此在我们之前使用的最终 sdset 命令中将 SID 替换为字符串“NS”。最后的命令应该是这样的:
sc sdset <SERVICE_NAME> "D:(A;;CCLCSWRPWPDTLOCRRC;;;SY)(A;;CCDCLCSWRPWPDTLOCRSDRCWDWO;;;BA)(A;;CCLCSWLOCRRC;;;IU)(A;;CCLCSWLOCRRC;;;SU)(A;;RPWPCR;;;NS)S:(AU;FA;CCDCLCSWRPWPDTLOCRSDRCWDWO;;;WD)"

从管理员用户帐户在命令提示符下执行它,瞧!您有权使用 WebMethod 从任何用户帐户(无论是否为管理员帐户)启动/停止服务。请参阅 Note1 以了解如何执行此操作。

关于windows-services - 从非管理员用户帐户启动/停止 Windows 服务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4436558/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com