본문 바로가기
Develop/Others

Failed to get device handle and/or partition ID

by 3-stack 2022. 5. 16.

[ 문제상황 ]

Vagrant로 VirtualBox 작업을 하던중 Failed to get device handle and/or partition ID에러가 나오면서 되지 않았다.

VirtualBox에서 직접 실행해도 동일한 에러를 만났다..

Failed to get device handle and/or partition ID

VERR_NEM_VM_CREATE_FAILED

 

 

[ 시도1 ]

대부분 Windows 기능 중 "Hyhper-V", "Windows 샌드박스" 를 끄라고 한다. 하지만 되지 않고...

 

 

[ 시도2 ]

bcdedit | findstr hyper

현재 hyper-V 설정을 보면 hypervisorlaunchtype 이 Auto 로 설정되어 있다.

이 경우 부팅시 자동으로 hyper-V가 실행된다고 한다. Hyper-V 기능을 끄자.

 

[ 해결 ]

bcdedit /set hypervisorlaunchtype off

# 기본값
# bcdedit /set hypervisorlaunchtype auto

hypervisorlaunchtype 을 OFF 해주면 잘 실행 된다.

명령어로 "Hyper-V"를 끄는거라 하는데 위 명령어 실행하고 재실행하니 잘 됐다.

 

댓글