Windows 8 PCを既存のドメインに登録するにはどうすればよいですか?
注:Windows 8 ProまたはEnterpriseが必要です
コマンドラインを恐れていない場合、PowerShellは JoinDomainOrWorkgroup 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
参照:
se X-Setup を試行して、「非」Pro Windowsクライアントをドメインに参加させることができます。ソフトウェアは古くなっていますが、Windows XP Home Editionがユーザーの要求に応えるために使用されていました。
Windows 8では試していません。