I am trying to find if a user I identify is a member of the local Administrators group.
But my code does nothing...
Please see me code below.
Also, this is being executed in my public void Form1_Load(object sender, EventArgs e) {}
so it is done every time at application start up.
string localUser = WindowsIdentity.GetCurrent().Name.ToString();
char[] trimmingsEnd = { 'a', 'd', 'm', 'i', 'n' };
string trimmedlocalEnd = localUser.TrimEnd(trimmingsEnd);
char[] trimmingsFront = { 'C', 'o', 'm', 'p', 'u', 't', 'e', 'r', '\\' };
string trimmedlocalUser = trimmedlocalEnd.TrimStart(trimmingsFront);
WindowsIdentity windowsIdentity = new WindowsIdentity(trimmedlocalUser);
WindowsPrincipal principal = new WindowsPrincipal(windowsIdentity);
bool IsAdmin = principal.IsInRole("BUILTIN\\" + "Administrators");
if (IsAdmin == false)
MessageBox.Show("not part of admin");
if (IsAdmin == true)
MessageBox.Show("part of admin");
So, I ditched the method above, as all I could find is the current user...but I needed to search for two user names in the local administrators group.
The following code worked perfectly for what I needed! Hope this helps someone.
If you want to check for your own user names, for the 'if', do: