Advertisement
Guest User

Untitled

a guest
Oct 15th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. #!/usr/bin/env sh
  2.  
  3. set -xe
  4.  
  5. name=$1
  6.  
  7. VBoxManage modifyvm "$name" --cpuidset 00000001 000106e5 00100800 0098e3fd bfebfbff
  8. VBoxManage modifyvm "$name" --cpu-profile "Intel Core i7-6700K"
  9. #VBoxManage setextradata "$name" "VBoxInternal/Devices/efi/0/Config/DmiSystemProduct" "iMac11,3"
  10. VBoxManage setextradata "$name" "VBoxInternal/Devices/efi/0/Config/DmiSystemProduct" "MacPro6,1"
  11. VBoxManage setextradata "$name" "VBoxInternal/Devices/efi/0/Config/DmiSystemVersion" "1.0"
  12. VBoxManage setextradata "$name" "VBoxInternal/Devices/efi/0/Config/DmiBoardProduct" "Iloveapple"
  13. VBoxManage setextradata "$name" "VBoxInternal/Devices/smc/0/Config/DeviceKey" "ourhardworkbythesewordsguardedpleasedontsteal(c)AppleComputerInc"
  14. VBoxManage setextradata "$name" "VBoxInternal/Devices/smc/0/Config/GetKeyFromRealSMC" 1
  15. VBoxManage setextradata "$name" VBoxInternal2/EfiGopMode 5
  16. VBoxManage setextradata "$name" VBoxInternal2/EfiGraphicsResolution 1920x1080
  17. VBoxManage setextradata "$name" "VBoxInternal/Devices/efi/0/LUN#0/Config/PermanentSave" 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement