Drop Down MenusCSS Drop Down MenuPure CSS Dropdown Menu

Vmware workstation 14 PRO Error Solution

VMware Workstation and Device/Credential Guard are not compatible Problem Resolve.
First you need to Disable Group Policy...

for that search for "Run" and type "gpedit.msc" in that
Goto    Local Computer Policy - Computer Configuration - Administrative Templates - System - Device Guard - Turn on Virtualization
Double click that .... and select "Disable" ...

Go to Control Panel - Uninstall a Program - Turn Windows features on or off - (uncheck/turn off) Hyper-V.
Click OK
Select Do not restart.

And then type the following cmds in cmd prompt.. to Delete the related EFI variables from the BCD file...
Launch cmd as admin... (run as administrator)
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
Restart your system ...

Note: while installing your iso os file don't forget to choose GUI option
-------------------------------------------------------
All VMs Start with Black Screen

Execute these commands from within the virtual system : sudo systemctl set-default graphical.target and sudo reboot
 or
To install a GUI just execute these commands : sudo yum groupinstall "Server with GUI" and sudo reboot


As you seem to be a new user of RHEL, here is some additional information. In order to install software from the repositories, you first have to register the system and attach your subscription.
If you haven't done that already before, execute these commands :

sudo subscription-manager register
sudo subscription-manager refresh
sudo subscription-manager attach --auto

After having installed the Server with GUI group and then switched to the graphical environment (shown in my answer above) and after that rebooted the virtual RHEL system, you will land on the graphical login screen of the GNOME desktop environment.

Comments

Popular posts from this blog

Oracle DBMS SCHEDULER Examples

How to find the server is whether standby (slave) or primary(master) in Postgresql replication ?

7 Steps to configure BDR replication in postgresql

How to Get Table Size, Database Size, Indexes Size, schema Size, Tablespace Size, column Size in PostgreSQL Database

vacuumlo - removing large objects orphans from a database PostgreSQL