vote up 0 vote down star

How can I determine the name of the local Administrators group in Vista? This can vary depending on the operating system language.

flag

76% accept rate

2 Answers

vote up 2 vote down check

Look it up by the well known SID.

In .NET you can use the enum value: System.Security.Principal.BuiltinAdministratorsSid

In Win32 you can use the enum value: WELL_KNOWN_SID_TYPE.WinBuiltinAdministratorsSid and see MSDN for details.

link|flag
vote up 1 vote down

As Richard proposes, use the wellknown sid to find the group.

var adminGroupSid = new SecurityIdentifier("S-1-5-32-544");
var adminGroup = (NTAccount)adminGroupSid.Translate(typeof(NTAccount));
var adminGroupName = adminGroup.Value;
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.