Start Windows Service From Application without Admin right(c++)(在没有管理员权限的情况下从应用程序启动 Windows 服务 (c++))
问题描述
我编写了一个 Windows 服务(并且运行良好).现在我有一个单独的应用程序,我想从中启动此服务,但如果没有管理员权限,这似乎是不可能的.
I wrote a windows service (and it runs fine). Now i have a separate app where I want to start this service from, but it seems this is not possible without administrator rights.
用户可以启动/停止服务(例如从托盘或应用程序)的正确解决方案是怎样的
How would a proper solution look like that a user can start/stop the service (e.g. from a tray or application)
恕我直言,应用程序必须始终以管理员权限启动是不好的.
IMHO its bad that the application must always be started with administrator rights.
推荐答案
您只需要更改服务对象的权限,最好在安装的同时更改.
You just need to change the permissions on the service object, preferably at the same time you install it.
wchar_t sddl[] = L"D:"
L"(A;;CCLCSWRPWPDTLOCRRC;;;SY)" // default permissions for local system
L"(A;;CCDCLCSWRPWPDTLOCRSDRCWDWO;;;BA)" // default permissions for administrators
L"(A;;CCLCSWLOCRRC;;;AU)" // default permissions for authenticated users
L"(A;;CCLCSWRPWPDTLOCRRC;;;PU)" // default permissions for power users
L"(A;;RP;;;IU)" // added permission: start service for interactive users
;
PSECURITY_DESCRIPTOR sd;
if (!ConvertStringSecurityDescriptorToSecurityDescriptor(sddl, SDDL_REVISION_1, &sd, NULL))
{
fail();
}
if (!SetServiceObjectSecurity(service, DACL_SECURITY_INFORMATION, sd))
{
fail();
}
我在这里假设您已经打开了服务句柄.您需要 WRITE_DAC 权限.
I'm assuming here you've already opened the service handle. You need WRITE_DAC permission.
如果您还希望非管理员用户能够停止服务,请添加 WP 权限,即
If you also want non-admin users to be able to stop the service, add the WP right, i.e.,
L"(A;;RPWP;;;IU)"
// added permissions: start service, stop service for interactive users
服务权限的 SDDL 代码可以在 Wayne Martin 的博客条目中找到,非管理员的服务控制管理器安全.
SDDL codes for service rights can be found in Wayne Martin's blog entry, Service Control Manager Security for non-admins.
这篇关于在没有管理员权限的情况下从应用程序启动 Windows 服务 (c++)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在没有管理员权限的情况下从应用程序启动 Win
基础教程推荐
- C++ 标准:取消引用 NULL 指针以获取引用? 2021-01-01
- 什么是T&&(双与号)在 C++11 中是什么意思? 2022-11-04
- 如何定义双括号/双迭代器运算符,类似于向量的向量? 2022-01-01
- 设计字符串本地化的最佳方法 2022-01-01
- 调用std::Package_TASK::Get_Future()时可能出现争用情况 2022-12-17
- C++ 程序在执行 std::string 分配时总是崩溃 2022-01-01
- 如何在 C++ 中处理或避免堆栈溢出 2022-01-01
- 运算符重载的基本规则和习语是什么? 2022-10-31
- 您如何将 CreateThread 用于属于类成员的函数? 2021-01-01
- C++,'if' 表达式中的变量声明 2021-01-01