O Hyper-V falha ao iniciar qualquer máquina virtual

4

Acabei de reinstalar o sistema operacional, o Windows 10, na minha máquina. Anteriormente, eu era capaz de usar o Hyper-V sem problemas, com exatamente a mesma imagem do sistema operacional, mas agora não funciona.

Eu criei uma máquina virtual vazia, apenas com um disco virtual e as opções padrão. Quando tento iniciá-lo, recebo a seguinte mensagem de erro:

An error occurred while attempting to start the selected virtual machine(s).

'test' failed to start.
'test' could not initialize.

Não há detalhes sobre o que deu errado. Eu verifiquei os logs com o seguinte comando:

Get-WinEvent -FilterHashTable @{LogName ="Microsoft-Windows-Hyper-V*"; StartTime = (Get-Date).AddMinutes(-10); }

Mas não fornece informações úteis:

   ProviderName: Microsoft-Windows-Hyper-V-VMMS

TimeCreated                     Id LevelDisplayName Message
-----------                     -- ---------------- -------
02/11/2017 14:25:13          15130 Error            'test' failed to start. (Virtual machine ID 56728BA4-4F7C-4581-90DA-E1DC131DB2C4)
02/11/2017 14:25:13          12514 Information      Found a certificate for server authentication. Remote access to virtual machines is now possible.
02/11/2017 14:25:13          12514 Information      Found a certificate for server authentication. Remote access to virtual machines is now possible.
02/11/2017 14:25:13          12514 Information      Found a certificate for server authentication. Remote access to virtual machines is now possible.
02/11/2017 14:25:13          12514 Information      Found a certificate for server authentication. Remote access to virtual machines is now possible.
02/11/2017 14:25:13          12514 Information      Found a certificate for server authentication. Remote access to virtual machines is now possible.


   ProviderName: Microsoft-Windows-Hyper-V-Worker

TimeCreated                     Id LevelDisplayName Message
-----------                     -- ---------------- -------
02/11/2017 14:25:13           3040 Error            'test' could not initialize. (Virtual machine ID 56728BA4-4F7C-4581-90DA-E1DC131DB2C4)


   ProviderName: Microsoft-Windows-Hyper-V-VMMS

TimeCreated                     Id LevelDisplayName Message
-----------                     -- ---------------- -------
02/11/2017 14:21:28          15130 Error            'test' failed to start. (Virtual machine ID 56728BA4-4F7C-4581-90DA-E1DC131DB2C4)
02/11/2017 14:21:28          12514 Information      Found a certificate for server authentication. Remote access to virtual machines is now possible.
02/11/2017 14:21:28          12514 Information      Found a certificate for server authentication. Remote access to virtual machines is now possible.
02/11/2017 14:21:28          12514 Information      Found a certificate for server authentication. Remote access to virtual machines is now possible.
02/11/2017 14:21:28          12514 Information      Found a certificate for server authentication. Remote access to virtual machines is now possible.
02/11/2017 14:21:28          12514 Information      Found a certificate for server authentication. Remote access to virtual machines is now possible.


   ProviderName: Microsoft-Windows-Hyper-V-Worker

TimeCreated                     Id LevelDisplayName Message
-----------                     -- ---------------- -------
02/11/2017 14:21:28           3040 Error            'test' could not initialize. (Virtual machine ID 56728BA4-4F7C-4581-90DA-E1DC131DB2C4)


   ProviderName: Microsoft-Windows-Hyper-V-VMMS

TimeCreated                     Id LevelDisplayName Message
-----------                     -- ---------------- -------
02/11/2017 14:21:21          27311 Information      The system successfully created 'D:\Hyper-V\test.vhdx'.
02/11/2017 14:21:20          27310 Information      The system is creating 'D:\Hyper-V\test.vhdx'.
02/11/2017 14:21:19          13002 Information      A new virtual machine 'test' was created. (Virtual machine ID 56728BA4-4F7C-4581-90DA-E1DC131DB2C4)
02/11/2017 14:21:19          18304 Information      The virtual machine 'test' was realized. (VMID 56728BA4-4F7C-4581-90DA-E1DC131DB2C4).
0

As configurações do BIOS não foram alteradas desde antes da reinstalação, portanto, elas devem estar corretas. Eu os verifiquei e a virtualização está ativada.

Eu já tentei desinstalar o Hyper-V e reinstalá-lo, reiniciei inúmeras vezes, restaurei as permissões do sistema de arquivos, nada ajudou.

O que posso fazer para corrigir isso?

    
por Antoine Aubry 02.11.2017 / 15:37

2 respostas

3

Talvez o hipervisor "esqueceu" de iniciar automaticamente, você pode tentar usar o seguinte comando em um prompt de comando elevado:

BCDEDIT /Set {current} hypervisorlaunchtype auto

    
por 02.11.2017 / 18:47
0

Para mim, a solução foi encontrada em esta postagem :

A solução que está sendo executada com o seguinte comando:

net localgroup administrators SERVICE /delete

E depois reinicialize depois.

    
por 28.11.2018 / 22:48