Feedback

C# - Active Directory Gruppen Zugehörigkeit prüfen

Veröffentlicht von am 6/24/2009
(2 Bewertungen)
Man kann die Gruppenzugehörigkeit auch mit der SID der Gruppe prüfen.

Damit nicht durch anlegen einer lokalen Gruppe zu umgehen.
Ist auch "offline" ohne DomainController abprüfbar.



System.Security.Principal.WindowsIdentity ident = 
       System.Security.Principal.WindowsIdentity.GetCurrent();
System.Security.Principal.WindowsPrincipal prin = 
        new System.Security.Principal.WindowsPrincipal(ident);

System.Threading.Thread.CurrentPrincipal = prin;
if (prin.IsInRole(new System.Security.Principal.SecurityIdentifier("S-1-45-44-46456-44564-456456-232")))
{
    //Code hier ausführen
}

Kommentare zum Snippet

 

Logge dich ein, um hier zu kommentieren!