如何使用本机 C++ 检查进程是否在 Windows 7 中具有提升的权限?
如何检查进程在 Windows 7 中是否具有提升的权限(使用本机 C++,而不是 C#/C++.net)?
我有时一直在寻找答案,但我只能找到使用 .NET 框架的答案。
How can I check if a process has elevated privileges in Windows 7 (using native C++, not C#/C++.net) ?
I've been looking for an answer for quite sometimes, but all I can find are the answers that use the .NET framework.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最简单的方法是调用 IsUserAnAdmin 函数。如果您需要更高的精度,您也可以使用 GetTokenInformation,但在大多数情况下这是多余的。
The simplest approach is to call the IsUserAnAdmin function. If you need more precision you can also use GetTokenInformation but in most cases that is overkill.