- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我一直在重写我公司的域加入脚本,我正在使用 C# 中的“JoinDomainOrWorkgroup”方法将计算机加入域:
void Join(string newPCName, string destinationOU)
{
// 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;
string domain = "MyDomain.com";
string password = passwordBox.Text;
string username = usernameBox.Text;
// 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 "
int parameters = JOIN_DOMAIN | ACCT_CREATE;
// The arguments are passed as an array of string objects in a specific order
object[] methodArgs = { domain, password, username, destinationOU, 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!");
this.Close();
return;
}
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);
return;
}
}
效果很好!唯一的问题是我需要它在加入域时使用新名称,而不是当前的机器名称,并且无法弄清楚如何在以编程方式更改 PC 名称然后运行此代码之间不重新启动的情况下执行此操作。
我们一直在使用以下 PowerShell 命令加入域,这允许我们使用新名称加入域,然后重新启动并在一次重启中设置新名称:
Add-Computer -NewName $ComputerName.ToUpper() -DomainName "MyDomain.com" -Credential $cred -OUPath $Target -ErrorAction Continue
有没有办法在 C# 中实现这一点?我试过更改行:
ManagementObject computerSystem = new ManagementObject("Win32_ComputerSystem.Name='" + Environment.MachineName + "'");
到:
ManagementObject computerSystem = new ManagementObject("Win32_ComputerSystem.Name='" + newPCName + "'");
但如果“newPCName”与当前 PC 名称不匹配,它只会抛出一个错误。
有没有人知道如何引用“待定”PC 名称,或者在不引用当前机器名称的情况下加入域?
非常感谢!
最佳答案
我终于设法让它工作了;我需要重组我的代码以先将计算机添加到域中,然后更改计算机的名称。
在这里粘贴我的代码以帮助可能有同样问题的其他人:
public static bool JoinAndSetName(string newName, string target, string username, string password)
{
// Get WMI object for this machine
using (ManagementObject computerSystem = new ManagementObject("Win32_ComputerSystem.Name='" + Environment.MachineName + "'"))
{
try
{
object[] methodArgs = { "MyDomain.com", password, username, target, 3 };
computerSystem.Scope.Options.Authentication = System.Management.AuthenticationLevel.PacketPrivacy;
computerSystem.Scope.Options.Impersonation = ImpersonationLevel.Impersonate;
computerSystem.Scope.Options.EnablePrivileges = true;
object joinParams = computerSystem.InvokeMethod("JoinDomainOrWorkgroup", methodArgs);
}
catch (ManagementException e)
{
MessageBox.Show("Join to domain didn't work");
return false;
}
// Join to domain worked - now change name
ManagementBaseObject inputArgs = computerSystem.GetMethodParameters("Rename");
inputArgs["Name"] = newName;
inputArgs["Password"] = password;
inputArgs["UserName"] = username;
// Set the name
ManagementBaseObject nameParams = computerSystem.InvokeMethod("Rename", inputArgs, null);
if ((uint)(nameParams.Properties["ReturnValue"].Value) != 0)
{
MessageBox.Show("Name change didn't work");
return false;
}
// All ok
return true;
}
}
绝对要信用This post ;我修改了它以包括指定 OU 路径和添加身份验证隐私。
关于c# - 使用 "JoinDomainOrWorkgroup"加入域时使用新的 PC 名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57009143/
我的 PC 上有一个服务器应用程序,它读取 jpg 文件并通过套接字将其发送到 Android 设备。问题是,当Android设备接收到字节数组时,无法将其转换为位图。我创建了一个 PC 应用程序来接
我创建了一个 JavaFX 应用程序。现在我想确保它不被复制到其他计算机上。更详细地说,我将该应用程序出售给一位客户,安装该应用程序后,我需要确保其不被从一台计算机复制到另一台计算机。 如何防止他人复
我构建了一个使用 Dynamic 关键字的程序。 在我的代码中,我这样做了: public void OnNext(ExpandoObject value) { dynamic expando
如何通过USB在两台PC之间进行通信?我想要一个程序通过 USB 端口将数字发送到另一台 PC,另一个程序将在该 PC 上显示这些数字。我觉得这是不可能的,因为 PC 是主机而不是设备,但 USB 真
我的代码在 virtualbox 中完美运行,但在真实 PC 上启动时却无法运行(从 BIOS 检测为 USB 硬盘驱动器的 USB 笔驱动器)。 在虚拟框中;该代码将磁盘的第 2 和第 3 扇区读取
在开发 PC HD 损坏后,我正在考虑让我的开发环境完全基于虚拟 PC。 核心项目是:- XP Pro 32- IIS- VS2003- VS2008- SQL Server 2005- Office
我目前使用的是 Windows Server 2008 Standard 并且有几台 Hyper V 机器。这些是开发 VM,我现在想切换回 Vista x64,因为我缺少 Aero。 我知道 Win
我使用 Virtual PC 来创建新的环境来测试我的安装程序。但我一定是做错了什么,因为内部装有 Vista 或 XP 的 VPC 镜像占用了大约 15GB 的磁盘空间(包括安装在其中的 VS200
大家好,我正在调试一些 CS 程序,为了查看应用程序在慢速互联网中的性能,我尝试了很多不同的方法。然而最好的是服务器端和客户端在同一台电脑上——我的服务器端和客户端的调试环境是在一台电脑上设置的。 所
我有兴趣制作一个将字符串从一台计算机传输到另一台计算机的应用程序。我对 TCP 或 UDP 通信感兴趣。我已经实现了 UDP,但它似乎能够发送最多 512 字节的数据/数据包。在两端实现数据包拆分和连
在为 Pocket PC 平台开发软件时,我一直很高兴地使用 Microsoft 随 Visual Studio 提供的 Pocket PC 模拟器(并且可以免费下载)。它提供了更快的开发/部署/测试
我想执行一个批处理文件 D:\apache-tomcat-6.0.20\apache-tomcat-7.0.30\bin\shutdown.bat 这是在我的服务器上 inidsoasrv01 . 我
我目前正在我的开发 PC 上使用 Jenkins。我把它安装在我的开发电脑上,因为我对这个工具的了解有限;所以我在我的开发电脑上对其进行了测试。现在,我对 Jenkins 作为我在构建过程中的长期“合
互联网上有很多示例展示了如何编写一个应用程序,使我们能够通过蓝牙与手机与电脑进行通信。但我想做的是通过蓝牙从另一台电脑控制一台电脑。我正在尝试使用蓝牙库。我在一台电脑上运行服务器,并尝试使用此处的示例
我正在寻找一个基准测试(以及在其他 PC 上的结果),它可以让我了解通过升级我的 PC 可以获得的开发性能提升,而且该基准测试可以用来向我的老板证明升级的合理性。 我使用 Visual Studio
我只在一台 PC 上有异常,在其他 PC 上一切正常,有人知道它是从哪里来的吗? dditional information: Requested Windows Runtime type 'Wind
我想创建一个软件,它可以使用 session 选项进行 pc 到 pc 调用(没有电话)。所有参与者将仅使用该软件。我擅长使用不同的语言、平台和数据库进行编程。但是我以前没有做过这种类型的软件。 我将
我做了这个布局。 template 唯一的问题是宽度问题。它因显示器而异,取决于显示器的宽度。主菜单和标题区域的左右两侧都有空白区域。在页脚的情况下你可以看到同样的情况.. 根据我的显示器宽度,我有
我在我的电脑上编译了一个内核,然后我把它安装在同一台电脑上,它工作正常。我的问题是如何在另一台计算机上安装相同的内核? 最佳答案 您需要复制 vmlinuz-[version number] 和 in
我正在使用 Mysql,我在两个不同的系统中有两个数据库。我希望我的本地数据库与远程数据库同步。这两个架构将具有相同的表和列。 每当远程数据库发生变化时,我的本地数据库中应该发生变化/更新。 怎么做?
我是一名优秀的程序员,十分优秀!