System Center Virtual Machine Manager 에서 VM 배포 시 한글 키보드 안 되는 문제 해결법

안녕 하세요 이번 포스팅에서는 System Center Virtual Machine Manager 를 이용 하여 Windows 운영체제 VM 배포 시 언어 및 지역이 기본 값으로 영문 형식으로 지정이 되어한글 버전 OS에도

한글 키보드가 기본 적으로 사용을 못하고 영문 키보드만 사용 할 수 있는 문제를 해결 할 수 있는 방법에 대하여  VM Template 에 PowerShell을 실행 하여 문제 해결이 가능 합니다.

 

해결 방법 순서:

1. SCVMM 콘솔 실행

2. 라이브러리 -> VM Template 목록

3. PowerShell 또는 PowerShell ISE를 이용 하여 아래 목록에 명령어 실행

PowerShell Script

Import-Module virtualmachinemanager

$template = Get-SCVMtemplate | where {$_.Name -eq "VM Template 이름"}

$settings = $template.UnattendSettings;

$settings.add("oobeSystem/Microsoft-Windows-International-Core/UserLocale","ko-KR");

$settings.add("oobeSystem/Microsoft-Windows-International-Core/SystemLocale","ko-KR");

$settings.add("oobeSystem/Microsoft-Windows-International-Core/UILanguage","ko-KR");

#$settings.add("oobeSystem/Microsoft-Windows-International-Core/InputLocale","0412:00000412"); #Windwos 2012

$settings.add("oobeSystem/Microsoft-Windows-International-Core/InputLocale","0412:E0010412"); #Windows 2008(2003)

#$settings.Remove("oobeSystem/Microsoft-Windows-International-Core/InputLocale"); 삭제 Sample Script

Set-SCVMTemplate -VMTemplate $template -UnattendSettings $settings

 

참고:

언어팩 코드 참고 https://technet.microsoft.com/en-us/library/cc766191(v=ws.10).aspx

기본 키보드(한글) 코드 참고 https://technet.microsoft.com/en-us/library/cc766503(v=ws.10).aspx https://msdn.microsoft.com/en-us/goglobal/bb895996