From ceda07f72d3a48b0624cf3ad3795a93d283176b6 Mon Sep 17 00:00:00 2001 From: notAperson535 <95918679+notAperson535@users.noreply.github.com> Date: Fri, 28 Jan 2022 16:39:44 -0500 Subject: [PATCH] Add files via upload --- fetchOSX.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 fetchOSX.py diff --git a/fetchOSX.py b/fetchOSX.py new file mode 100644 index 0000000..0ef83e9 --- /dev/null +++ b/fetchOSX.py @@ -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")