Cloud/Azure
(Azure) 가상머신에 Hyper-V 기능 켜기
kjun.kr
2019. 4. 23. 23:42
728x90
가상 머신( Windows Server 2016 Datacenter ) 상에서는 Hyper-V 기능이 켜지지 않는다.
아래 처럼 기능을 선택하면 에러가 발생된다.(캡쳐를 못해서 퍼옴)
아래 처럼 파워쉘 명령어를 이용해도 되지 않는다. (빨간색줄)
하지만 그 아래 부분의 명령어를 이용하면 기능을 켤수 있다.
PS C:\Users\kjun> Enable-WindowsOptionalFeature –Online -FeatureName Microsoft-Hyper-V –All -NoRestart
PS C:\Users\kjun> Install-WindowsFeature RSAT-Clustering -IncludeAllSubFeature
PS C:\Users\kjun> Install-WindowsFeature Multipath-IO
PS C:\Users\kjun> Install-WindowsFeature RSAT-Hyper-V-Tools -IncludeAllSubFeature
PS C:\Users\kjun> Install-WindowsFeature RSAT-Clustering -IncludeAllSubFeature
PS C:\Users\kjun> Install-WindowsFeature Multipath-IO
PS C:\Users\kjun> Install-WindowsFeature RSAT-Hyper-V-Tools -IncludeAllSubFeature
재부팅 결과
728x90