4

在我的 C# 代码中,我想将用户添加到“管理员”组。我听说在德语版本的 Windows 上,该组将被称为“Administratoren”,也许在其他本地版本上它会有其他名称。

我的代码在进行搜索时传递了一个硬编码字符串:

var context = new PrincipalContext( ContextType.Machine );
var group = GroupPrincipal.FindByIdentity( context, "Administrators" );

因此,如果该组实际上有其他名称,它将中断。我发现这篇 MSDN 文章带有众所周知的 SID坚果,我不知道如何实际使用它们来解决我的问题。

如何定位独立于 Windows 操作系统语言的本地组?

4

1 回答 1

4

我不知道这是否有帮助。

using System.Security;
using System.Security.Principal;

......
SecurityIdentifier sid = new SecurityIdentifier("S-1-5-32-544");
string name = sid.Translate(typeof(NTAccount)).Value;
Console.WriteLine(name);

结果是

"BUILTIN\Administrators"

我已从该页面获取 SID ,您可以在其中找到其他值进行实验。

于 2012-08-06T09:11:52.377 回答