hyper v in windows powershell

Nimmagadda Shalem raj 0 Reputation points
2025-06-07T07:14:30.7066667+00:00

i want to install hyper v from windows powershell for gaming.in control panel,in was not showing

PowerShell
PowerShell
A family of Microsoft task automation and configuration management frameworks consisting of a command-line shell and associated scripting language.
2,970 questions
0 comments No comments
{count} votes

1 answer

Sort by: Newest
  1. S.Sengupta 24,211 Reputation points MVP
    2025-06-07T07:57:39.2566667+00:00

    Firstly, check if your system supports Hyper-V

    Open PowerShell as Admin and copy-paste the following:

    systeminfo

    Now check the status of:

    VM Monitor Mode Extensions
    
    Virtualization Enabled In Firmware
    
    Second Level Address Translation 
    
    Data Execution Prevention Available
    

    All will show Yes. If any show as No, your system may not support Hyper-V, or virtualization is disabled in BIOS.

    If it supports, then open PowerShell as Admin and copy-paste the following:

    Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Hyper-V -All

    Enter Y to have the computer restart to complete the installation.

    Microsoft Reference Article:

    Install Hyper-V

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.