Create a bootable virtual disk image (VMDK) for installing macOS (Monterey, Ventura) on VMware workstation

Create a bootable virtual disk image (VMDK) for installing macOS (Monterey, Ventura) on VMware workstation

Create a bootable virtual disk image (VMDK) for installing macOS (Monterey, Ventura) on VMware workstation

  • This guide is for creating a bootable virtual disk installer for macOS Monterey that can be used to install macOS on VMware workstation.
  • The same steps should also work for macOS Ventura.
  • The installer is the full macOS installation image, not the smaller recovery image.
  • Download links to the VDMK files on Google Drive are also listed below if you just want to get the disk image files.
  • This guide was created using a macOS Catalina virtual machine.

Table of Contents

1 Create a new virtual hard disk

Attach a new 14GB virtual hard disk to your macOS virtual machine. The new VMDK will be used to create a bootable Monterey installer.

2 Erase the disk using Disk Utility

Open Disk Utility
Show all devices

Select the 14GB virtual disk – Erase

Name: macos
Format: mac OS Extended (Journaled)
Scheme: GUID Partition Map

Click Erase

3 Download macOS installer using the softwareupdate command

1
2
3
4
5
6
# Download macOS Monterey 12.5.1
softwareupdate —download —fetchfullinstaller —fullinstallerversion 12.5.1
# Download macOS Ventura 13.0
softwareupdate —download —fetchfullinstaller —fullinstallerversion 13.0

softwareupdate command options

–help Show the help
–download Download only
–fetch-full-installer Get the latest macOS installer
–full-installer-version Get a specific macOS version

macOS version numbers

macOS 12 Monterey macOS 13 Ventura
macOS 12.5 macOS 13.0
macOS 12.5.1
macOS 12.6
macOS 12.6.1

4 Create a bootable disk using the createinstallmedia command

Now we have downloaded the macOS installer.app, we can use the createinstallmedia command to make the “macos” virtual disk into a bootable Monterey installer

1
2
3
4
5
6
# Monterey
sudo /Applications/InstallmacOSMonterey.app/Contents/Resources/createinstallmedia —volume /Volumes/macos
# Ventura
sudo /Applications/InstallmacOSVentura.app/Contents/Resources/createinstallmedia —volume /Volumes/macos

You can now remove the 14GB macos virtual disk from the VM (rename it to macos-monterey.vmdk) and use it for installing Monterey.

5 Download macOS VMware VMDK disk images from Google Drive

Download macOS 12 Monterey VMDK (13GB)
VMware Workstation 17
macos-monterey.vmdk

Download macOS 12 Monterey VMDK (13GB)
VMware Workstation 15
macos-monterey-vmws15.vmdk

Download macOS 13 Ventura VMDK (13GB)
VMware Workstation 17
macos-ventura.vmdk

Download macOS 13 Ventura VMDK (13GB)
VMware Workstation 15
macos-ventura-vmws15.vmdk

SOURCE: https://techlabs.blog/categories/how-to-guides/install-macos-on-windows-in-vmware-workstation-using-a-virtual-disk-image

Comments are closed.