Removing Hyper-V role from Windows Server 2012 R2

72,593

Solution 1

First start "Add Roles and Features Wizard" and then switch to the "Remove Roles and Features Wizard". And there it is possible to remove Hyper-V role.

enter image description here

enter image description here

enter image description here

enter image description here

enter image description here

Solution 2

I had the same problem and @kce's answer of removing Hyper-V using PowerShell cured the problem for me to.

As a few further points, you need to run PowerShell as an Administrator. To do that in the search box on the Start Menu type powershell. It will turn up various variants of PowerShell. I used Active Directory Module for Windows Powershell. It should open with the prompt PS C:\Windows\system32>.

After that type the command given in @kce's answer:

remove-windowsfeature -name Hyper-V

It will take a minute or two to remove the feature. After that you need to restart the machine to complete the removal of Hyper-V.

Share:
72,593

Related videos on Youtube

Admin
Author by

Admin

Updated on September 18, 2022

Comments

  • Admin
    Admin almost 2 years

    I am attempting to remove they Hyper-V role from a Windows Server 2012 R2 machine. When attempting to do so via the "Add Roles and Features Wizard", the check box is grayed out and it will not allow me to uncheck it and therefore will not allow me to uninstall this role.

    This was a simple process in 2008 and 2008 R2. Not sure what has changed.

  • shashwat
    shashwat over 7 years
    Hyper-V is checked and disabled. I can't uncheck this. Any solution..? Also, it is mentioned as Hyper-V (Installed).
  • Torbjörn Bergstedt
    Torbjörn Bergstedt over 7 years
    Had the same problem, the Powershell solution here worked for me