以编程方式创建Windows用户c#.net(使用PricinpalUser / CreateProfile)

时间:2012-01-25 19:13:11

标签: c# .net windows security windows-7

简而言之,我要做的就是创建一个能够登录的新用户。

我从各种来源中提取代码,并试图简化它。但是,我正在遇到一些绊脚石。

当我致电UserPrincipal.Save()时 - 它会给我一个错误

  

'无法在缓存中找到目录属性   异常类型..'COMExceptioncrossed native / managed boundary'。

出于某种原因,当我直接运行我的程序(而不是通过vs2010)时,它运行正常。所以我可以解决这个问题!

我的主要问题是,即使一切似乎都没问题,当我尝试登录时,它会显示消息“加载桌面”或其他任何内容,然后只是说“退出”。所以几乎就像配置文件没有正确设置一样。

API“CreateProfile”的返回值不为0,因此可能会导致问题。

还有什么我需要做的吗?

我的代码是......

private void Run(string un, string pw)
{
    UserPrincipal NewUP = CreateUser(un, pw);
    AddGroup(NewUP, "Users");
    AddGroup(NewUP, "HomeUsers");
    CreateProfile(NewUP);
}
private UserPrincipal CreateUser(string Username, string Password)
{
    PrincipalContext pc = new PrincipalContext(ContextType.Machine, Environment.MachineName);
    UserPrincipal up = UserPrincipal.FindByIdentity(pc, IdentityType.SamAccountName, Username);
    if (up == null)
    {
        up = new UserPrincipal(pc, Username, Password, true);
        up.UserCannotChangePassword = false;
        up.PasswordNeverExpires = false;
        up.Save(); // this is where it crashes when I run through the debugger
    }
    return up;
}
private void AddGroup(UserPrincipal Up, string GroupName)
{
    PrincipalContext pc = new PrincipalContext(ContextType.Machine, Environment.MachineName);
    GroupPrincipal gp = GroupPrincipal.FindByIdentity(pc, GroupName);
    if (!gp.Members.Contains(Up))
    {
        gp.Members.Add(Up);
        gp.Save();
    }
    gp.Dispose();
}
private void CreateProfile(UserPrincipal Up)
{
    int MaxPath = 240;
    StringBuilder pathBuf = new StringBuilder(MaxPath);
    uint pathLen = (uint)pathBuf.Capacity;
    int Res = CreateProfile(Up.Sid.ToString(), Up.SamAccountName, pathBuf, pathLen);
}

1 个答案:

答案 0 :(得分:1)

奇怪的是,当它在服务器机器上运行时(即不是我的开发机器),它工作正常。我有一种感觉,这与Windows 7或我的特定安装有关。

无论如何,谢谢你的建议。