기존 도메인에 Windows 8 PC를 등록하려면 어떻게해야합니까?
기존 도메인에 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
참고 문헌 :
X-Setup 을 사용 하여 '비'Pro Windows 클라이언트를 도메인에 가입 시킬 수 있습니다 . 소프트웨어가 오래되었지만 Windows XP Home Edition에서 요청한 작업을 수행하는 데 사용되었습니다.
Windows 8에서는 시도하지 않았습니다.
netdom
않습니까? 나는 그것을 직접 시도하지 않았다.