Windows 10 Turn on / off virtualization based security windows 10 home edition

itdept

New Member
Joined
Jun 30, 2020
Messages
1
Can this be done in Turn on / off virtualization based security windows 10 home its not showing GPEDIT
Cheers !
 

Solution
Enabling or disabling Virtualization-based Security (VBS) on Windows 10 Home, which does not include the Local Group Policy Editor (gpedit.msc) by default, requires a different approach. Here's a method you can use to control VBS on Windows 10 Home:

Method: Using Command Prompt​

  • Open Command Prompt (Admin):
  • Right-click on the Start menu.
  • Select "Windows PowerShell (Admin)".
  • Run Command to Enable VBS:
  • To enable VBS, use the following command:
    Code:
    bash bcdedit /set hypervisorlaunchtype auto
  • Run Command to Disable VBS:
  • To disable VBS, use the following command:
    Code:
    bash bcdedit /set hypervisorlaunchtype off
  • Restart:
  • Restart your computer for changes to take effect...
Enabling or disabling Virtualization-based Security (VBS) on Windows 10 Home, which does not include the Local Group Policy Editor (gpedit.msc) by default, requires a different approach. Here's a method you can use to control VBS on Windows 10 Home:

Method: Using Command Prompt​

  • Open Command Prompt (Admin):
  • Right-click on the Start menu.
  • Select "Windows PowerShell (Admin)".
  • Run Command to Enable VBS:
  • To enable VBS, use the following command:
    Code:
    bash bcdedit /set hypervisorlaunchtype auto
  • Run Command to Disable VBS:
  • To disable VBS, use the following command:
    Code:
    bash bcdedit /set hypervisorlaunchtype off
  • Restart:
  • Restart your computer for changes to take effect.

    Note:​

  • Enabling VBS: The command sets the hypervisor to launch automatically, enabling features like Credential Guard and Device Guard.
  • Disabling VBS: The command disables the hypervisor, allowing you to turn off Virtualization-based Security features. By using the Command Prompt method, you can effectively manage Virtualization-based Security on your Windows 10 Home system even without the Group Policy Editor. Remember to proceed with caution when making changes to system settings.
 

Solution
Back
Top