Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --APERTURE OS DELETION HANDLER
- --this program deletes all Programs relating to Aperture os and all files also
- --this program is for Minecraft 1.16.5, CC Tweaked
- function DeleteOS()
- --Programs
- fs.delete("startup")
- fs.delete("ApertureOS_Boot")
- fs.delete("ApertureOS_LoginManager")
- fs.delete("ApertureOS_Base")
- fs.delete("ApertureOS_UpdateHandler")
- fs.delete("ApertureOS_ApplicationMenu")
- fs.delete("ApertureOS_SettingsMenu")
- fs.delete("ApertureOS_ClientConsole")
- fs.delete("ShutdownPrompt")
- fs.delete("ApertureOS_SecurityCheck")
- fs.delete("C_Pastebin")
- fs.delete("setup")
- --Logs
- --System Files
- shell.run("pastebin","run","Uj9cA48M") --File Deletion Handler
- --Stored Data
- shell.run("pastebin","get","rXkWAyZC","startup) --creates a new startup file that starts the Reinstall Prompt.
- os.reboot()
- end
- term.clear()
- term.scroll()
- term.setCursorPos(1,1)
- print("do you really want to Delete Aperture OS? all files will be deleted.")
- print("y/n")
- while true do
- local event,key = os.pullEvent("key")
- if key == keys.y then
- DeleteOS()
- break
- elseif key == keys.n then
- shell.run("ApertureOS_Base")
- break
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement