如何知道我在windows中是否有管理员权限?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如何确定进程或线程是否以管理员身份运行
How to Determine Whether a Process or Thread Is Running As an Administrator
您可以使用 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.