Registriert seit: 10. Jun 2002
Ort: Unterhaching
11.412 Beiträge
Delphi 12 Athens
|
Re: Admin-Rechte prüfen
13. Apr 2005, 17:59
Oder einfach so:
Delphi-Quellcode:
uses
System.Security.Principal, System.Threading;
procedure TWinForm3.Button1_Click(sender: System.Object; e: System.EventArgs);
begin
AppDomain.CurrentDomain.SetPrincipalPolicy(PrincipalPolicy.WindowsPrincipal);
WP := WindowsPrincipal(Thread.CurrentPrincipal);
if WP.IsInRole(WindowsBuiltInRole.Administrator) then
MessageBox.Show('Du bist Admin')
else
MessageBox.Show('Du bist kein Admin');
end;
... ...
Daniel Lizbeth Ich bin nicht zurück, ich tue nur so
|