Skip to main content

VMware Workstation Pro on Windows 10

VMware Workstation Pro 15 is broken after upgrade to Windows 10 1903

>>> May 13th 2024: VMware Workstation Pro: Now Available Free for Personal Use

VMware Workstation Pro 15 was broken after windows updates install October 3, 2019—KB4524147 (OS Build 18362.388). Uninstall KB4524147 and reboot computer solved the issue.

Set default location of virtual machines

VMware Workstation Pro - Set default location of virtual machines

Set location for screenshot

VMware Workstation Pro - Set location for screenshot

Log files' location

%TEMP%\VMware-%USERNAME%\

Install macOS Unlocker for VMware Workstation

VMware Workstation after installing Unlock

VMware Workstation does not support nested virtualization on this host

VMware Workstation does not support nested virtualization on this host

Check hypervisorlaunchtype using bcdedit

PS C:\Windows\system32> bcdedit

Windows Boot Manager
--------------------
identifier              {bootmgr}
device                  partition=\Device\HarddiskVolume5
description             Windows Boot Manager
locale                  en-US
inherit                 {globalsettings}
default                 {current}
resumeobject            {8a7abfcf-8d21-11eb-b4dc-897293ea8553}
displayorder            {current}
toolsdisplayorder       {memdiag}
timeout                 30

Windows Boot Loader
-------------------
identifier              {current}
device                  partition=C:
path                    \Windows\system32\winload.exe
description             Windows 10
locale                  en-US
inherit                 {bootloadersettings}
recoverysequence        {8a7abfd1-8d21-11eb-b4dc-897293ea8553}
displaymessageoverride  Recovery
recoveryenabled         Yes
allowedinmemorysettings 0x15000075
osdevice                partition=C:
systemroot              \Windows
resumeobject            {8a7abfcf-8d21-11eb-b4dc-897293ea8553}
nx                      OptIn
bootmenupolicy          Standard
hypervisorlaunchtype    Auto
PS C:\Windows\system32>

Turn off hypervisorlaunchtype

PS C:\Windows\system32> bcdedit /set hypervisorlaunchtype off
The operation completed successfully.
PS C:\Windows\system32> bcdedit

Windows Boot Manager
--------------------
identifier              {bootmgr}
device                  partition=\Device\HarddiskVolume5
description             Windows Boot Manager
locale                  en-US
inherit                 {globalsettings}
default                 {current}
resumeobject            {8a7abfcf-8d21-11eb-b4dc-897293ea8553}
displayorder            {current}
toolsdisplayorder       {memdiag}
timeout                 30

Windows Boot Loader
-------------------
identifier              {current}
device                  partition=C:
path                    \Windows\system32\winload.exe
description             Windows 10
locale                  en-US
inherit                 {bootloadersettings}
recoverysequence        {8a7abfd1-8d21-11eb-b4dc-897293ea8553}
displaymessageoverride  Recovery
recoveryenabled         Yes
allowedinmemorysettings 0x15000075
osdevice                partition=C:
systemroot              \Windows
resumeobject            {8a7abfcf-8d21-11eb-b4dc-897293ea8553}
nx                      OptIn
bootmenupolicy          Standard
hypervisorlaunchtype    Off
PS C:\Windows\system32>

>>> Download VMware Workstation Pro Evaluation

Popular posts from this blog

Powershell: Install IIS

Run Powershell as Administrator, then run the command below to install IIS. Install-WindowsFeature Web-WebServer Check after installing Get-WindowsFeature *Web*

[PowerShell]: Powershell script uploading backup databases to ftp server

Author:  Enrique Puig Nouselles http://gallery.technet.microsoft.com/scriptcenter/80647f66-139c-40a4-bb7a-04a2d73d423c Nhu cầu - Học sử dụng Powershell và áp dụng vào thực tế - Server chạy MS SQL được backup mỗi ngày và lưu các file backup ở folder mặc định "C:/Program Files/Microsoft SQL Server/MSSQL11.MSSQLSERVER/MSSQL/Backup" - Upload các file database backup về một ftp server khác để lưu "offsite" # Begin script # Thanks to: Enrique Puig Nouselles http://gallery.technet.microsoft.com/scriptcenter/80647f66-139c-40a4-bb7a-04a2d73d423c # Khai báo folder chứa các file backup database, dưới đây là folder backup mặc định của MS SQL 2012 $Dir="C:/Program Files/Microsoft SQL Server/MSSQL11.MSSQLSERVER/MSSQL/Backup"   # ftp server $ftp = "ftp://IPAddres/subfolder/subsubfolder" $user = "usernamehere" $pass = "passwordhere" # DO NOT use $(Get-Date), use $d variable instead, otherwise SQL Agent gets error "The...