0% found this document useful (0 votes)
140 views1 page

VirtualBox VM Settings

This document provides code for configuring VirtualBox to run macOS virtual machines on both VirtualBox 5.x.x and 4.x.x. The code samples show commands to modify the VM configuration to spoof macOS hardware details and set emulated SMC parameters to help macOS install and boot properly in VirtualBox.

Uploaded by

AAC Tridaya
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
140 views1 page

VirtualBox VM Settings

This document provides code for configuring VirtualBox to run macOS virtual machines on both VirtualBox 5.x.x and 4.x.x. The code samples show commands to modify the VM configuration to spoof macOS hardware details and set emulated SMC parameters to help macOS install and boot properly in VirtualBox.

Uploaded by

AAC Tridaya
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

Code for Virtualbox 5.x.

x:

cd "C:\Program Files\Oracle\VirtualBox\"
VBoxManage.exe modifyvm "MacOS" --cpuidset 00000001 000106e5 00100800 0098e3fd
bfebfbff
VBoxManage setextradata "MacOS"
"VBoxInternal/Devices/efi/0/Config/DmiSystemProduct" "iMac11,3"
VBoxManage setextradata "MacOS"
"VBoxInternal/Devices/efi/0/Config/DmiSystemVersion" "1.0"
VBoxManage setextradata "MacOS" "VBoxInternal/Devices/efi/0/Config/DmiBoardProduct"
"Iloveapple"
VBoxManage setextradata "MacOS" "VBoxInternal/Devices/smc/0/Config/DeviceKey"
"ourhardworkbythesewordsguardedpleasedontsteal(c)AppleComputerInc"
VBoxManage setextradata "MacOS"
"VBoxInternal/Devices/smc/0/Config/GetKeyFromRealSMC" 1

Code for Vitualbox 4.x.x

cd "C:\Program Files\Oracle\VirtualBox\"

VBoxManage.exe modifyvm "VM Name" --cpuidset 00000001 000106e5 00100800 0098e3fd


bfebfbff

VBoxManage setextradata "VM Name"


"VBoxInternal/Devices/efi/0/Config/DmiSystemProduct" "iMac11,3"

VBoxManage setextradata "VM Name"


"VBoxInternal/Devices/efi/0/Config/DmiSystemVersion" "1.0"

VBoxManage setextradata "VM Name"


"VBoxInternal/Devices/efi/0/Config/DmiBoardProduct" "Iloveapple"

VBoxManage setextradata "VM Name" "VBoxInternal/Devices/smc/0/Config/DeviceKey"


"ourhardworkbythesewordsguardedpleasedontsteal(c)AppleComputerInc"

VBoxManage setextradata "VM Name"


"VBoxInternal/Devices/smc/0/Config/GetKeyFromRealSMC" 1

You might also like