Skip to content

Instantly share code, notes, and snippets.

@Terkea
Created June 15, 2020 14:42
Show Gist options
  • Save Terkea/f0b4efcb5163412d5147da7666bc6b9a to your computer and use it in GitHub Desktop.
Save Terkea/f0b4efcb5163412d5147da7666bc6b9a to your computer and use it in GitHub Desktop.
How to Fix the Error “VMware Workstation and Device/Credential Guard are not compatible”
run cmd as admin
```bash
bcdedit /create {0cb3b571-2f2e-4343-a879-d86a476d7215} /d "DebugTool" /application osloader
bcdedit /set {0cb3b571-2f2e-4343-a879-d86a476d7215} path "\EFI\Microsoft\Boot\SecConfig.efi"
bcdedit /set {bootmgr} bootsequence {0cb3b571-2f2e-4343-a879-d86a476d7215}
bcdedit /set {0cb3b571-2f2e-4343-a879-d86a476d7215} loadoptions DISABLE-LSA-ISO, DISABLE-VBS
bcdedit /set hypervisorlaunchtype off
```
After that, restart the computer and open the virtual machine. Now that the changes have been made, it should start without any errors.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment