如何将 Windows 8 PC 注册到现有域?
答案1
- 来自开始页面,选择控制面板。
- 在左侧边栏中,滚动到底部并选择更多设置。现在您看到的控制面板与 Windows 7 中的非常相似。
- 选择系统和安全, 然后系统。
- 在里面计算机名称、域和工作组设置部分,选择更改设置。
- 执行您在 Windows 7 中要执行的操作。
注意:您必须拥有 Windows 8 Pro 或 Enterprise
答案2
如果你不怕命令行,PowerShell 提供了一种简单的方法来编写脚本/自动化加入域或工作组WMI 方法:
# Acquire credentials for a domain account that has permission to join
$admin = Get-Credential
# these two variables are for convenience in shortening the command line
$user = $admin.UserName
$pw = $admin.GetNetworkCredential().Password
$CS = Get-WmiObject Win32_ComputerSystem
$CS.JoinDomainOrWorkgroup("DOMAIN",$pw,$user,$null,3)
重要的提示:您需要 Windows 8 Pro 或 Enterprise 才能加入域。常规版本的 Windows 8 和 Windows 8 RT 无法加入域。您可以使用以下 PowerShell 命令查看您的版本:
(Get-WmiObject -class Win32_OperatingSystem).Caption
参考:
答案3
您可以尝试使用 X-Setup将“非”专业版 Windows 客户端加入域。该软件已过时,但它曾用于 Windows XP Home Edition 来执行您所要求的操作。
我还没有在 Windows 8 上尝试过。