Sc4pterR0bl0x

nOPL OS (Not bootable, A batch file)

Jul 29th, 2020
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.45 KB | None | 0 0
  1. @echo off
  2. title Login
  3. set Username=Admin
  4. set Password=Admin
  5. echo Welcome to nOPL OS, %Username%
  6. pause
  7. cls
  8. set /p PasswordIn=Please enter the password of this account:
  9. if %PasswordIn%==%Password% goto OS
  10. pause
  11. cls
  12. :OS
  13. title Main OS
  14. cls
  15. echo Welcome, %Username%
  16. pause
  17. cls
  18. echo Please select a option:
  19. echo 1)Shutdown
  20. echo 2)Settings
  21. echo .
  22. set /p command_line=.
  23. if %command_line%==1 exit
  24. if %command_line%==2 goto settings
  25.  
  26. :settings
  27. title Settings
  28. cls
  29. echo Welcome to settings
  30. echo Here are your options:
  31. echo 1)back
  32. echo 2)Text color changer
  33. set /p settings_line=.
  34. if %settings_line%==1 goto OS
  35. if %settings_line%==2 goto Colors
  36. pause
  37.  
  38. :Colors
  39. cls
  40. echo Please select a color(Please type in 0 if you want to go back)
  41. echo 1)Blue
  42. echo 2)Green
  43. echo 3)Yellow
  44. echo 4)Red
  45. echo 5)Light Green
  46. echo 6)Light Blue
  47. echo 7)Black
  48. echo 8)Grey
  49. set /p color_selecter=.
  50. if %color_selecter%==0 goto settings
  51. if %color_selecter%==1 goto Blue
  52. if %color_selecter%==2 goto Green
  53. if %color_selecter%==3 goto Yellow
  54. if %color_selecter%==4 goto Red
  55. if %color_selecter%==5 goto Light_Green
  56. if %color_selecter%==6 goto Light_Blue
  57. if %color_selecter%==7 goto Black
  58. if %color_selecter%==8 goto Grey
  59.  
  60. :Blue
  61. color 1
  62. goto Colors
  63. :Green
  64. color 2
  65. goto Colors
  66. :Yellow
  67. color 6
  68. goto Colors
  69. :Red
  70. color 4
  71. goto Colors
  72. :Light_Green
  73. color A
  74. goto Colors
  75. :Light_Blue
  76. color 9
  77. goto Colors
  78. :Black
  79. color 0
  80. goto Colors
  81. :Grey
  82. color 8
  83. goto Colors
  84.  
  85.  
  86.  
Advertisement
Add Comment
Please, Sign In to add comment