C# 在C中重新启动计算机并加入域#

C# 在C中重新启动计算机并加入域#,c#,join,dns,rename,C#,Join,Dns,Rename,我正在尝试制作一个程序,使我们能够更容易地在域上部署新的计算机。我想让它做的是,简单地重命名计算机,并将其加入我们的域(它将要做很多其他的事情,但这是不会进来,直到我有了这个工作) 代码如下: 偷来的,然后换成适合我需要的 我的问题是域加入不尊重计算机的重命名。我已经加入了一个线程。在重命名和连接之间睡眠,这样我就有时间检查重命名是否发生了,它确实发生了!当domainjoin发生时,它会恢复为旧名称,而这是在域中创建的计算机名,而不是新名称 我已经搜索了所有地方,但没有找到这样的问题,也没有找

我正在尝试制作一个程序,使我们能够更容易地在域上部署新的计算机。我想让它做的是,简单地重命名计算机,并将其加入我们的域(它将要做很多其他的事情,但这是不会进来,直到我有了这个工作)

代码如下:

偷来的,然后换成适合我需要的

我的问题是域加入不尊重计算机的重命名。我已经加入了一个线程。在重命名和连接之间睡眠,这样我就有时间检查重命名是否发生了,它确实发生了!当domainjoin发生时,它会恢复为旧名称,而这是在域中创建的计算机名,而不是新名称

我已经搜索了所有地方,但没有找到这样的问题,也没有找到针对这种特殊需求的解决方案。

这里有一个将工作站连接到域的c#函数……您可能会发现它是一种替代方法,可以避免WMI,而是使用ManagementObject:

(我意识到执行凭据仍然需要重命名权限)


你看到了吗:这也可能有用:所以答案是:加入域名,然后更改电脑的名称。这有点问题,因为非管理员没有更改电脑名称的权限,但我会解决这个问题,非常感谢你的帮助:)没问题。。我只是在谷歌上搜索了一下。。我实际上是在寻找一些你可以调用的powershell脚本,但我发现了它。如果你弄明白了,就发帖子,回答并接受它。。如果它有任何代码,我将投票表决;-)
public static bool Join(string dom,string usr, string pass)
    {
        // Define constants used in the method.
        int JOIN_DOMAIN = 1;
        int ACCT_CREATE = 2;
        int ACCT_DELETE = 4;
        int WIN9X_UPGRADE = 16;
        int DOMAIN_JOIN_IF_JOINED = 32;
        int JOIN_UNSECURE = 64;
        int MACHINE_PASSWORD_PASSED = 128;
        int DEFERRED_SPN_SET = 256;
        int INSTALL_INVOCATION = 262144;

        // Define parameters that we will use later when we invoke the method.
        // Remember, the username must have permission to join the object in the AD.
        //string domain = "domain";
        //string password = "password";
        //string username = "username";
        //string destinationOU = "destinationOU";

        // Here we will set the parameters that we like using the logical OR operator.
        // If you want to create the account if it doesn't exist you should add " | ACCT_CREATE "
        // For more information see: http://msdn.microsoft.com/en-us/library/aa392154%28VS.85%29.aspx
        int parameters = JOIN_DOMAIN | DOMAIN_JOIN_IF_JOINED;

        // The arguments are passed as an array of string objects in a specific order
        object[] methodArgs = { dom, pass, usr + "@" + dom, null, parameters };

        // Here we construct the ManagementObject and set Options
        ManagementObject computerSystem = new ManagementObject("Win32_ComputerSystem.Name='" + Environment.MachineName + "'");
        computerSystem.Scope.Options.Authentication = System.Management.AuthenticationLevel.PacketPrivacy;
        computerSystem.Scope.Options.Impersonation = ImpersonationLevel.Impersonate;
        computerSystem.Scope.Options.EnablePrivileges = true;

        // Here we invoke the method JoinDomainOrWorkgroup passing the parameters as the second parameter
        object Oresult = computerSystem.InvokeMethod("JoinDomainOrWorkgroup", methodArgs);

        // The result is returned as an object of type int, so we need to cast.
        int result = (int)Convert.ToInt32(Oresult);

        // If the result is 0 then the computer is joined.
        if (result == 0)
        {
            MessageBox.Show("Joined Successfully!");
            return true;
        }
        else
        {
            // Here are the list of possible errors
            string strErrorDescription = " ";
            switch (result)
            {
                case 5: strErrorDescription = "Access is denied";
                    break;
                case 87: strErrorDescription = "The parameter is incorrect";
                    break;
                case 110: strErrorDescription = "The system cannot open the specified object";
                    break;
                case 1323: strErrorDescription = "Unable to update the password";
                    break;
                case 1326: strErrorDescription = "Logon failure: unknown username or bad password";
                    break;
                case 1355: strErrorDescription = "The specified domain either does not exist or could not be contacted";
                    break;
                case 2224: strErrorDescription = "The account already exists";
                    break;
                case 2691: strErrorDescription = "The machine is already joined to the domain";
                    break;
                case 2692: strErrorDescription = "The machine is not currently joined to a domain";
                    break;
            }
            MessageBox.Show(strErrorDescription.ToString());
            return false;
        }

    }