delphi判断当前用户是否为管理员


本文整理自网络,侵删。

 Unit Unit1;


Interface

Uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs;

Type
TForm1 = Class(TForm)
Procedure FormCreate(Sender: TObject);
Private
{ Private declarations }
Public
{ Public declarations }
End;

Var
Form1: TForm1;

Implementation

{$R *.dfm}

Function IsAdmin: Boolean;
Const
SECURITY_NT_AUTHORITY: TSIDIdentifierAuthority = (value: (0, 0, 0, 0, 0, 5));
SECURITY_BUILTIN_DOMAIN_RID = $00000020;
DOMAIN_ALIAS_RID_ADMINS = $00000220;
Var
hAccessToken: THandle;
ptgGroups: PTokenGroups;
dwInfoBufferSize: DWORD;
psidAdministrators: PSID;
x: Integer;
bSuccess: BOOL;
Begin
Result := False;
bSuccess := OpenThreadToken(GetCurrentThread, TOKEN_QUERY, True,
hAccessToken);
If Not bSuccess Then
Begin
If GetLastError = ERROR_NO_TOKEN Then
bSuccess := OpenProcessToken(GetCurrentProcess, TOKEN_QUERY,
hAccessToken);
End;
If bSuccess Then
Begin
GetMem(ptgGroups, 1024);
bSuccess := GetTokenInformation(hAccessToken, TokenGroups,
ptgGroups, 1024, dwInfoBufferSize);
CloseHandle(hAccessToken);
If bSuccess Then
Begin
AllocateAndInitializeSid(SECURITY_NT_AUTHORITY, 2,
SECURITY_BUILTIN_DOMAIN_RID, DOMAIN_ALIAS_RID_ADMINS,
0, 0, 0, 0, 0, 0, psidAdministrators);
{$R-}
For x := 0 To ptgGroups.GroupCount - 1 Do
If EqualSid(psidAdministrators, ptgGroups.Groups[x].Sid) Then
Begin
Result := True;
Break;
End;
{$R+}
FreeSid(psidAdministrators);
End;
FreeMem(ptgGroups);
End;
End;


Procedure TForm1.FormCreate(Sender: TObject);
Begin
If IsAdmin Then
ShowMessage('IsAdmin');
End;

End.

相关阅读 >>

Delphi 字符串中加入换行符slinebreak

Delphi 中string字符串转换byte[]字节数组

tmsweb core 组件居中显示

Delphi spy++ 拖拽功能

Delphi的tclientsocket组件和tserversocket组件(c/s)说明

Delphi 单击按钮左键弹起菜单

屏幕抓取Delphi

Delphi 在单独线程中运行窗体

Delphi下的字符串分隔函数的一种用法

Delphi 百度输入提示 Delphi 实现

更多相关阅读请进入《Delphi》频道 >>



打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,您说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

分享从这里开始,精彩与您同在

评论

管理员已关闭评论功能...