1
0
mirror of https://github.com/foxlet/macOS-Simple-KVM.git synced 2024-06-29 01:48:35 +02:00

Add files via upload

This commit is contained in:
notAperson535 2022-01-28 16:39:44 -05:00 committed by GitHub
parent 7dcd11f38f
commit ceda07f72d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

18
fetchOSX.py Normal file
View File

@ -0,0 +1,18 @@
import os
print("Mojave : 1")
print("Catalina : 2")
print("Big Sur : 3")
print ("Monterey : 4")
osxver = input("Enter Version: ")
if osxver == 1:
os.system("python macrecovery.py -b Mac-7BA5B2DFE22DDD8C -m 00000000000KXPG00 download")
elif osxver == 2:
os.system(" python macrecovery.py -b Mac-00BE6ED71E35EB86 -m 00000000000000000 download")
elif osxver == 3:
os.system(" python macrecovery.py -b Mac-42FD25EABCABB274 -m 00000000000000000 download")
else:
os.system(" python ./macrecovery.py -b Mac-E43C1C25D4880AD6 -m 00000000000000000 download")
os.system("qemu-img convert BaseSystem.dmg -O raw BaseSystem.img")