home *** CD-ROM | disk | FTP | other *** search
- #
- # Main Menu
- #
- main_menu:
- set textColor = color[white on blue]
- clear
- set textColor = color[white on blue]
- print " PCpro-Notfall-CD "
- print " powered by ULTIMATE BOOT CD VER 3.2 "
- print " www.pc-professionell.de "
- set textColor = color[red on white]
- print " "
- print " [Startseite] "
- set textColor = color[blue on white]
- print " "
- print " "
- print " "
- print " "
- print " [F1] Mainboard-Tools "
- print " [F2] Festplatten-Tools "
- print " [F3] Dateisystem-Tools "
- print " [F4] Sonstige Tools "
- print " [F5] DOS/Linux-Bootdisketten "
- print " "
- print " [1] Von erster Festplatte starten "
- print " [2] Von zweiter Festplatte starten "
- print " [0] Zur Konsole wechseln "
- print " "
- print " "
- print " "
- print " "
- set textColor = color[white on blue]
- print " Auswahl treffen (Nach 5 Minuten wird von der ersten Festplatte gestartet) "
- set textColor = color[white on blue]
-
- #
- # Actions
- #
- getkey 500 script boothdd0.scn
- clear
- if ($lastKey == key[f1]); then script mboard.scn
- if ($lastKey == key[f2]); then script hdd.scn
- if ($lastKey == key[f3]); then script filesys.scn
- if ($lastKey == key[f4]); then script others.scn
- if ($lastKey == key[f5]); then script bootdsk.scn
- if ($lastKey == key[1]); then script boothdd0.scn
- if ($lastKey == key[2]); then script boothdd1.scn
- if ($lastKey == key[0]); then goto console
- goto main_menu
-
- #
- # Drop to console
- #
- console:
- cd /
- clear
- help
- end
-
-