如何知道我在windows中是否有管理员权限?

发布于 2024-09-06 07:04:12 字数 82 浏览 3 评论 0原文

windows中有没有API可以检测当前用户(当前)是否有管理员权限?

BOOL 是否具有权限() { 非常

感谢!

Is there any APIs in windows to detect whether the current user(current now) has the admin authority?

BOOL IsHasAuthority()
{
}

Many Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

新雨望断虹 2024-09-13 07:04:12

如何确定进程或线程是否以管理员身份运行

在写作时使用此解决方案
必须确定的应用程序
以下任一情况是否正确:

  • 当前用户可以执行管理任务。目前
    用户是以下组织的成员
  • 管理员组。提供的令牌句柄代表
    具有提升令牌的管理员。
  • 令牌句柄代表属于该组织成员的用户
    管理员组。
  • 程序正在使用提升的令牌运行或需要生成
    子程序被提升所以它
    可以执行管理任务。

How to Determine Whether a Process or Thread Is Running As an Administrator

Use this solution when you are writing
an application that must determine
whether any of the following is true:

  • The current user can perform administrative tasks. The current
    user is a member of the
  • Administrators group. A supplied token handle represents an
    administrator with an elevated token.
  • A token handle represents a user who is a member of the
    Administrators group.
  • The program is running with an elevated token or needs to spawn a
    child program that is elevated so it
    can perform administrative tasks.
黎歌 2024-09-13 07:04:12

您可以使用 Windows API 函数 CheckTokenMembership()。该功能的 MSDN 文档有一个示例,演示如何检查管理员本地组中的成员身份。

You can use the Windows API function CheckTokenMembership(). The MSDN documentation for that function has an example demonstrating how to check for membership in the Administrators local group.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文