Skip to content

Instantly share code, notes, and snippets.

@moddingg33k
Last active September 20, 2020 19:55
Show Gist options
  • Save moddingg33k/2757c872bbf4a828d7bb51cb9470dc07 to your computer and use it in GitHub Desktop.
Save moddingg33k/2757c872bbf4a828d7bb51cb9470dc07 to your computer and use it in GitHub Desktop.

Common Commands

VBoxManage.exe setextradata "VM Name" "VBoxInternal/Devices/efi/0/Config/DmiBoardProduct" "Iloveapple" 
VBoxManage.exe setextradata "VM Name" "VBoxInternal/Devices/efi/0/Config/DmiSystemProduct" "iMac19,1"
VBoxManage.exe setextradata "VM Name" "VBoxInternal/Devices/efi/0/Config/DmiSystemVersion" "1.0" 
VBoxManage.exe setextradata "VM Name" "VBoxInternal/Devices/smc/0/Config/DeviceKey" "ourhardworkbythesewordsguardedpleasedontsteal(c)AppleComputerInc" 
VBoxManage.exe setextradata "VM Name" "VBoxInternal/Devices/smc/0/Config/GetKeyFromRealSMC" 1

Change Resolution

VBoxManage.exe setextradata "VM Name" "VBoxInternal2/EfiGraphicsResolution" 1600*900

Additional / Differing Commands

VirtualBox 5.x / 6.x (Intel processors)

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

VirtualBox 4.x (Intel processors)

VBoxManage.exe modifyvm "VM Name" --cpuidset 00000001 000306a9 04100800 7fbae3ff bfebfbff
VBoxManage.exe setextradata "VM Name" "VBoxInternal/Devices/efi/0/Config/DmiBoardProduct" "Mac-2BD1B31983FE1663"
VBoxManage.exe setextradata "VM Name" "VBoxInternal/Devices/efi/0/Config/DmiSystemProduct" "MacBookPro11,3"

??? (AMD processors):

VBoxManage.exe modifyvm "VM Name" --cpuidset 00000001 000106e5 00100800 0098e3fd bfebfbff
VBoxManage.exe modifyvm "VM Name" --cpu-profile "Intel Core i7-6700K"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment