Z1maV1

.uninstall

May 15th, 2022 (edited)
603
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.56 KB | None | 0 0
  1. os.pullEvent = os.pullEventRaw
  2.  
  3. term.clear()
  4. term.setCursorPos(1,1)
  5.  
  6. print("Deleting os files...")
  7. shell.run("delete /bin")
  8. shell.run("delete /boot")
  9. shell.run("delete /etc")
  10. shell.run("delete /home")
  11. shell.run("delete /lib")
  12. shell.run("delete /var")
  13. shell.run("delete /usr")
  14. shell.run("delete /tmp")
  15. print("Done.")
  16. sleep(1)
  17. print("Deleteing BIOS booting config...")
  18. settings.unset("bootFile")
  19. print("Done.")
  20. sleep(1)
  21. print("Deleting BIOS...")
  22. shell.run("delete startup")
  23. print("Done.")
  24. print("Computer will reboot in 3 seconds")
  25. sleep(3)
  26. os.reboot()
  27.  
Advertisement
Add Comment
Please, Sign In to add comment