vmware workstation12 installation centos prompts VMware Player and Device/Credential Guard are incompatible, reasons and solutions

vmware workstation12 installation centos prompts VMware Player and Device/Credential Guard are incompatible, reasons and solutions

In the latest version of WIN10, Microsoft introduced a security mechanism based on virtualization containers. Simply put, it puts the system kernel into an isolated container to run it to improve security. This isolated container is made with Hyper-V, which causes Hyper-V to seize VMware's virtualization resources.

The solution can be found in the official vmware solution https://kb.vmware.com/s/article/2146361?lang=zh_CN

Step 1: Disable Device Guard Group Policy Configuration

Run gpedit.msc and find Device Guard

Double-click to open virtualization-based security, select Disabled, and confirm

Step 2: Open "Enable or disable Windows features", uncheck Hyper-V, and do not restart after confirming;

Step 3: Run cmd as an administrator and run the following command to delete the relevant EFI variables:

mountvol X: /s
 copy %WINDIR%\System32\SecConfig.efi X:\EFI\Microsoft\Boot\SecConfig.efi /Y
 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 {0cb3b571-2f2e-4343-a879-d86a476d7215} device partition=X:
 mountvol X: /d

In the last sentence, for "mountvol X: /d", please select your own non-system installation disk drive letter, preferably an unused disk drive.

Step 4: Restart the system and follow the on-screen instructions after booting up

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • VMware Workstation is not compatible with Device/Credential Guard
  • About the startup error caused by incompatibility between vmware workstations and device/credential

<<:  Analysis of the ideas of implementing vertical tables in two ways in Vue project

>>:  How to configure mysql on ubuntu server and implement remote connection

Recommend

Completely uninstall mysql. Personal test!

Cleanly uninstall MySQL. Personally tested, this ...

Detailed explanation of the adaptive adaptation problem of Vue mobile terminal

1. Create a project with vue ui 2. Select basic c...

HTML Basics: HTML Content Details

Let's start with the body: When viewing a web ...

Understand all aspects of HTTP Headers with pictures and text

What are HTTP Headers HTTP is an abbreviation of ...

How to install mysql5.7.24 binary version on Centos 7 and how to solve it

MySQL binary installation method Download mysql h...

Two simple menu navigation bar examples

Menu bar example 1: Copy code The code is as foll...

Install CentOS 7 on VMware14 Graphic Tutorial

Introduction to CentOS CentOS is an enterprise-cl...

Solve MySQL deadlock routine by updating different indexes

The previous articles introduced how to debug loc...

Detailed explanation of the update command for software (library) under Linux

When installing packages on an Ubuntu server, you...

mysql8 Common Table Expression CTE usage example analysis

This article uses an example to describe how to u...

MySQL slow query pitfalls

Table of contents 1. Slow query configuration 1-1...

JavaScript realizes the generation and verification of random codes

The generation and verification of random codes i...

CentOS 7 switching boot kernel and switching boot mode explanation

centos7 switch boot kernel Note: If necessary, it...

Let's talk about the v-on parameter problem in Vue

Use of v-on:clock in Vue I'm currently learni...