Thanks to visit codestin.com
Credit goes to www.scribd.com

0% found this document useful (0 votes)
1K views1 page

VBox Code

This document provides code to modify a VirtualBox virtual machine to spoof it as an Apple iMac. The code first changes the CPU ID of the VM and then sets extra data to configure the VM's DMI system product as an iMac 11,3 with a version of 1.0. It also sets the board product to "Iloveapple" and configures the SMC device key and to get the key from the real SMC to fully spoof the VM as an Apple computer.

Uploaded by

Sultan Alkhaldi
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)
1K views1 page

VBox Code

This document provides code to modify a VirtualBox virtual machine to spoof it as an Apple iMac. The code first changes the CPU ID of the VM and then sets extra data to configure the VM's DMI system product as an iMac 11,3 with a version of 1.0. It also sets the board product to "Iloveapple" and configures the SMC device key and to get the key from the real SMC to fully spoof the VM as an Apple computer.

Uploaded by

Sultan Alkhaldi
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

Note: You should replace your "VM Name" with your own virtual Machine

Code for Virtualbox 6.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