home *** CD-ROM | disk | FTP | other *** search
/ PC Professionell 2005 April / PCpro_2005_04.ISO / boot / menus / main.scn < prev    next >
Encoding:
Text File  |  2005-02-13  |  2.8 KB  |  60 lines

  1. #
  2. # Main Menu
  3. #
  4. main_menu:
  5. set textColor = color[white on blue]
  6. clear
  7. set textColor = color[white on blue]
  8. print "                             PCpro-Notfall-CD                                   "
  9. print "                   powered by ULTIMATE BOOT CD VER 3.2                          "
  10. print "                         www.pc-professionell.de                                "
  11. set textColor = color[red on white]
  12. print "                                                                                "
  13. print "                              [Startseite]                                      "
  14. set textColor = color[blue on white]
  15. print "                                                                                "
  16. print "                                                                                "
  17. print "                                                                                "
  18. print "                                                                                "
  19. print "                           [F1] Mainboard-Tools                                 "
  20. print "                           [F2] Festplatten-Tools                               "
  21. print "                           [F3] Dateisystem-Tools                               "
  22. print "                           [F4] Sonstige Tools                                  "
  23. print "                           [F5] DOS/Linux-Bootdisketten                         "
  24. print "                                                                                "
  25. print "                            [1] Von erster Festplatte starten                   "
  26. print "                            [2] Von zweiter Festplatte starten                  "
  27. print "                            [0] Zur Konsole wechseln                            "
  28. print "                                                                                "
  29. print "                                                                                "
  30. print "                                                                                "
  31. print "                                                                                "
  32. set textColor = color[white on blue]
  33. print "   Auswahl treffen (Nach 5 Minuten wird von der ersten Festplatte gestartet)    "
  34. set textColor = color[white on blue]
  35.  
  36. #
  37. # Actions
  38. #
  39. getkey 500 script boothdd0.scn
  40. clear
  41. if ($lastKey == key[f1]); then script mboard.scn
  42. if ($lastKey == key[f2]); then script hdd.scn
  43. if ($lastKey == key[f3]); then script filesys.scn
  44. if ($lastKey == key[f4]); then script others.scn
  45. if ($lastKey == key[f5]); then script bootdsk.scn
  46. if ($lastKey == key[1]); then script boothdd0.scn
  47. if ($lastKey == key[2]); then script boothdd1.scn
  48. if ($lastKey == key[0]); then goto console
  49. goto main_menu
  50.  
  51. #
  52. # Drop to console
  53. #
  54. console:
  55. cd /
  56. clear
  57. help
  58. end
  59.  
  60.