init.sh 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. #!/bin/bash
  2. echo "Performing basic initscript tasks..."
  3. dmesg -n 1
  4. mount -t devtmpfs none /dev
  5. mount -t proc none /proc
  6. mount -t sysfs none /sys
  7. echo "Done!"
  8. echo && echo
  9. echo "Welcome to ez-admin!"
  10. echo "Printing partitions. Please enter a partition to mount and run ez-admin on."
  11. mkdir -p /mnt
  12. fdisk -l
  13. echo "Please enter a partition: "
  14. read partition
  15. echo "Mounting partition..."
  16. mount $partition /mnt
  17. echo "Backing up and replacing Utilman.exe..."
  18. pushd /mnt/Windows/system32
  19. cp Utilman.exe Utilman.exe.bak
  20. cp cmd.exe Utilman.exe
  21. popd
  22. echo "Adding ez-restore.bat to System32..."
  23. pushd /mnt/Windows/system32
  24. touch ez-restore.bat
  25. echo "@echo off" > ez-restore.bat
  26. echo "cd C:/Windows/system32" >> ez-restore.bat
  27. echo "copy Utilman.exe.bak Utilman.exe" >> ez-restore.bat
  28. echo "del /f ez-restore.bat" >> ez-restore.bat
  29. echo "echo Finished restoring Utilman.exe and hiding the cleanup script!" >> ez-restore.bat
  30. popd
  31. echo "Unmounting partition..."
  32. umount $partition
  33. echo "Done! Rebooting in 5 seconds..."
  34. sleep 5
  35. poweroff -f