Created
July 17, 2020 07:47
-
-
Save e-tang/5c53ac53afdc14b718e655663791bef8 to your computer and use it in GitHub Desktop.
The script for install MacOS (Catalina) with VirtualBox
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Ackknowledgement | |
| # https://www.wikigain.com/install-macos-catalina-on-virtualbox-on-windows/ | |
| VBoxManage modifyvm "Catalina" --cpuidset 00000001 000106e5 00100800 0098e3fd bfebfbff | |
| VBoxManage setextradata "Catalina" "VBoxInternal/Devices/efi/0/Config/DmiSystemProduct" "iMac11,3" | |
| VBoxManage setextradata "Catalina" "VBoxInternal/Devices/efi/0/Config/DmiSystemVersion" "1.0" | |
| VBoxManage setextradata "Catalina" "VBoxInternal/Devices/efi/0/Config/DmiBoardProduct" "Iloveapple" | |
| VBoxManage setextradata "Catalina" "VBoxInternal/Devices/smc/0/Config/DeviceKey" "ourhardworkbythesewordsguardedpleasedontsteal(c)AppleComputerInc" | |
| VBoxManage setextradata "Catalina" "VBoxInternal/Devices/smc/0/Config/GetKeyFromRealSMC" 1 | |
| # Display Resolution, can replace 1920x1080 to 1280x720, | |
| VBoxManage setextradata "Catalina" VBoxInternal2/EfiGraphicsResolution 1920x1080 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment