home *** CD-ROM | disk | FTP | other *** search
- #
- # Main Menu
- #
- main_menu:
- set textColor = color[white on brightblue]
- print " "
- print " ULTIMATE BOOT CD VERSION 2.21 "
- print " "
- set textColor = color[white on brightred]
- print " [Startmenue] "
- set textColor = color[white on blue]
- print " "
- print " "
- print " "
- print " "
- print " [F1] Festplatten-Utilities "
- print " [F2] Filesystem-Utilities "
- print " [F3] Memory-Utilities "
- print " [F4] System-Utilities "
- print " [F5] Linux Boot-Disketten "
- print " [F6] Verschiedenes "
- print " "
- print " [F10] Booten Floppy Laufwerk A: "
- print " [F11] Booten von erster Festplatte "
- print " [F12] Booten von zweiter Festplatte "
- print " "
- print " "
- print " "
- print " "
- set textColor = color[white on blue]
- print " Bitte waehlen Sie einen Eintrag "
- print " (Nach 5 Minuten wird von der ersten Festplatte gestartet) "
-
- set textColor = color[white on brightblue]
-
- #
- # Main Menu - Actions
- #
- getkey 500 goto hddboot80
- if ($lastKey == key[f1]); then goto hdd_menu
- if ($lastKey == key[f2]); then goto filesys_menu
- if ($lastKey == key[f3]); then goto memory_menu
- if ($lastKey == key[f4]); then goto system_menu
- if ($lastKey == key[f5]); then goto linux_menu
- if ($lastKey == key[f6]); then goto others_menu
- if ($lastKey == key[f10]); then goto fddboot
- if ($lastKey == key[f11]); then goto hddboot80
- if ($lastKey == key[f12]); then goto hddboot81
- goto main_menu
-
- #
- # Boot from floppy drive A:
- #
- fddboot:
- if bootCheck[0]; then boot 0
- clear
- set textColor = color[brightred on brightblue]
- print "\n"
- print "\acDrive is not bootable\n"
- wait 0
-
- #
- # Boot from first hard disk
- #
- hddboot80:
- if bootCheck[0x80]; then boot 0x80
- clear
- set textColor = color[brightred on brightblue]
- print "\n"
- print "\acDrive is not bootable\n"
- wait 0
-
- #
- # Boot from second hard disk
- #
- hddboot81:
- if bootCheck[0x81]; then boot 0x81
- clear
- set textColor = color[brightred on brightblue]
- print "\n"
- print "\acDrive is not bootable\n"
- wait 0
-
- #
- # Festplatten-Utilities
- #
- hdd_menu:
- set textColor = color[white on brightblue]
- clear
- set textColor = color[white on brightred]
- print " "
- print " ULTIMATE BOOT CD VERSION 2.21 "
- print " [Festplatten-Utilities] "
- print " "
- set textColor = color[white on brightblue]
- print " "
- print " [F1] Festplatten-Installation "
- print " "
- print " [F2] Festplatten-Diagnose "
- print " "
- print " [F3] Festplatten-Management "
- print " "
- set textColor = color[yellow on brightblue]
- print " Festplatten sicher loeschen "
- set textColor = color[white on brightblue]
- print " [F4] AutoClave V0.3 "
- print " [F5] Active@ KillDisk Free Edition V3.0 "
- print " [F6] Darik's Boot and Nuke V1.0.2 "
- print " "
- set textColor = color[yellow on brightblue]
- print " Festplatten kopieren "
- set textColor = color[white on brightblue]
- print " [F7] HDClone V2.0 (Free Edition) "
- print " [F8] g4u V1.14 "
- print " "
- print " "
- print " "
- print " "
- set textColor = color[white on brightblue]
- print " Bitte waehlen Sie einen Eintrag (Mit ESC einen Schritt zurueck) "
- set textColor = color[white on brightblue]
-
- #
- # Festplatten-Utilities
- #
- getkey 500 goto hddboot80
- if ($lastKey == key[f1]); then goto hdd_menu_installation
- if ($lastKey == key[f2]); then goto hdd_menu_diagnosis
- if ($lastKey == key[f3]); then goto hdd_menu_management
- if ($lastKey == key[f4]); then memdisk /images/clave.img
- if ($lastKey == key[f5]); then memdisk /images/killdisk.img
- if ($lastKey == key[f6]); then memdisk /images/dban.img
- if ($lastKey == key[f7]); then memdisk /images/hdclone.img
- if ($lastKey == key[f8]); then diskemu /images/g4u.img
- if ($lastKey == key[esc]); then goto main_menu
- goto hdd_menu
-
- #
- # Festplatten-Utilities - Installation
- #
- hdd_menu_installation:
- set textColor = color[white on brightblue]
- clear
- set textColor = color[white on brightred]
- print " "
- print " ULTIMATE BOOT CD VERSION 2.21 "
- print " [Festplatten-Utilities] "
- print " "
- set textColor = color[white on brightblue]
- print " "
- set textColor = color[yellow on brightblue]
- print " Festplatten-Installation "
- set textColor = color[white on brightblue]
- print " "
- set textColor = color[yellow on brightblue]
- print " -- Maxtor -- "
- set textColor = color[white on brightblue]
- print " [F1] MaxBlast 3 V3.6 "
- print " "
- set textColor = color[yellow on brightblue]
- print " -- Seagate -- "
- set textColor = color[white on brightblue]
- print " [F2] DiscWizard 2003 "
- print " "
- print " "
- print " "
- print " "
- print " "
- print " "
- print " "
- print " "
- print " "
- print " "
- print " "
- set textColor = color[white on brightblue]
- print " Bitte waehlen Sie einen Eintrag (Mit ESC einen Schritt zurueck) "
- set textColor = color[white on brightblue]
-
- #
- # Festplatten-Utilities - Installation - Aktionen
- #
- getkey 500 goto hddboot80
- if ($lastKey == key[f1]); then memdisk /images/maxblast.img
- if ($lastKey == key[f2]); then memdisk /images/discwiz.img
- if ($lastKey == key[esc]); then goto hdd_menu
- goto hdd_menu_installation
-
- #
- # Festplatten-Utilities - Diagnose
- #
- hdd_menu_diagnosis:
- set textColor = color[white on brightblue]
- clear
- set textColor = color[white on brightred]
- print " "
- print " ULTIMATE BOOT CD VERSION 2.21 "
- print " [Festplatten-Utilities] "
- print " "
- set textColor = color[white on brightblue]
- print " "
- set textColor = color[yellow on brightblue]
- print " Festplatten-Diagnose "
- set textColor = color[white on brightblue]
- print " "
- set textColor = color[yellow on brightblue]
- print " -- IBM/Hitachi -- -- Maxtor/Quantum -- "
- set textColor = color[white on brightblue]
- print " [F1] Drive Fitness Test V3.60 [F2] PowerMax V4.06 "
- print " "
- set textColor = color[yellow on brightblue]
- print " -- Seagate -- "
- set textColor = color[white on brightblue]
- print " [F3] SeaTools Desktop V1.06.02 [F4] SeaTools Desktop v2.01.05 "
- print " "
- set textColor = color[yellow on brightblue]
- print " -- Western Digital -- "
- set textColor = color[white on brightblue]
- print " [F5] DLG Diagnostic V4.15 [F6] DLG Diagnostic V5.08 "
- print " [F7] Data Lifeguard V11.0 "
- print " "
- set textColor = color[yellow on brightblue]
- print " -- Samsung -- "
- set textColor = color[white on brightblue]
- print " [F8] SHDIAG V1.25 [F9] HUTIL V1.15 "
- print " "
- set textColor = color[yellow on brightblue]
- print " -- Fujitsu -- "
- set textColor = color[white on brightblue]
- print " [F10] Diagnostic Tool V6.10 "
- print " "
- set textColor = color[white on brightblue]
- print " Bitte waehlen Sie einen Eintrag (Mit ESC einen Schritt zurueck) "
- set textColor = color[white on brightblue]
-
- #
- # Festplatten-Utilities - Diagnose - Aktionen
- #
- getkey 500 goto hddboot80
- if ($lastKey == key[f1]); then memdisk /images/ibm.img
- if ($lastKey == key[f2]); then memdisk /images/maxtor.img
- if ($lastKey == key[f3]); then memdisk /images/seagate.img
- if ($lastKey == key[f4]); then memdisk /images/seatools.img
- if ($lastKey == key[f5]); then memdisk /images/dlgdiag4.img
- if ($lastKey == key[f6]); then memdisk /images/dlgdiag5.img
- if ($lastKey == key[f7]); then memdisk /images/datalife.img
- if ($lastKey == key[f8]); then memdisk /images/samsung.img
- if ($lastKey == key[f9]); then memdisk /images/hutil.img
- if ($lastKey == key[f10]); then memdisk /images/fujitsu.img
- if ($lastKey == key[esc]); then goto hdd_menu
- goto hdd_menu_diagnosis
-
- #
- # Festplatten-Utilities - Device-Management
- #
- hdd_menu_management:
- set textColor = color[white on brightblue]
- clear
- set textColor = color[white on brightred]
- print " "
- print " ULTIMATE BOOT CD VERSION 2.21 "
- print " [Festplatten-Utilities] "
- print " "
- set textColor = color[white on brightblue]
- print " "
- set textColor = color[yellow on brightblue]
- print " Festplatten-Management "
- set textColor = color[white on brightblue]
- print " "
- set textColor = color[yellow on brightblue]
- print " -- IBM/Hitachi -- "
- set textColor = color[white on brightblue]
- print " [F1] Feature Tool V1.92 "
- print " "
- set textColor = color[yellow on brightblue]
- print " -- Maxtor -- "
- set textColor = color[white on brightblue]
- print " [F2] AMSET V4.00 "
- print " "
- set textColor = color[yellow on brightblue]
- print " -- Seagate -- "
- set textColor = color[white on brightblue]
- print " [F3] UATA100 V3.06 "
- print " "
- set textColor = color[yellow on brightblue]
- print " -- Western Digital -- "
- set textColor = color[white on brightblue]
- print " [F4] Ultra ATA Manager (June, 2003) "
- print " "
- set textColor = color[yellow on brightblue]
- print " -- Andere -- "
- set textColor = color[white on brightblue]
- print " [F5] SMARTUDM V2.00 (HDD SMART Viewer) "
- print " [F6] ATA Password Tool V1.1 (Unlockt Passwort-geschuetzte Festplatten) "
- print " "
- set textColor = color[white on brightblue]
- print " Bitte waehlen Sie einen Eintrag (Mit ESC einen Schritt zurueck) "
- set textColor = color[white on brightblue]
-
- #
- # Festplatten-Utilities - Device Management - Actions
- #
- getkey 500 goto hddboot80
- if ($lastKey == key[f1]); then memdisk /images/ibmft.img
- if ($lastKey == key[f2]); then memdisk /images/amset.img
- if ($lastKey == key[f3]); then memdisk /images/uata100.img
- if ($lastKey == key[f4]); then memdisk /images/dlgudma.img
- if ($lastKey == key[f5]); then memdisk /images/smartudm.img
- if ($lastKey == key[f6]); then memdisk /images/atapwd.img
- if ($lastKey == key[esc]); then goto hdd_menu
- goto hdd_menu_management
-
- #
- # Filesystem Utilities
- #
- filesys_menu:
- set textColor = color[white on brightblue]
- clear
- set textColor = color[white on brightred]
- print " "
- print " ULTIMATE BOOT CD VERSION 2.21 "
- print " [Filesystem-Utilities] "
- print " "
- set textColor = color[white on brightblue]
- print " "
- print " [F1] Partition-Tools "
- print " "
- set textColor = color[yellow on brightblue]
- print " Bootmanager "
- set textColor = color[white on brightblue]
- print " [F2] Smart BootManager V3.7R1 "
- print " [F3] Gujin V0.8 "
- print " "
- set textColor = color[yellow on brightblue]
- print " Dateimanager "
- set textColor = color[white on brightblue]
- print " [F4] DOS Navigator V3.7.0 "
- print " [F5] File Maven V3.5a "
- print " "
- set textColor = color[yellow on brightblue]
- print " NTFS Tools "
- set textColor = color[white on brightblue]
- print " [F6] Offline NT Password & Registry Editor 040114 "
- print " [F7] Active NTFS Reader for DOS V1.0.1 "
- print " [F8] EditBINI (Edit BOOT.INI in einer NTFS-Partition) V1.01.1 "
- print " "
- print " "
- print " "
- print " "
- set textColor = color[white on brightblue]
- print " Bitte waehlen Sie einen Eintrag (Mit ESC einen Schritt zurueck) "
- set textColor = color[white on brightblue]
-
- #
- # Filesystem Utilities - Actions
- #
- getkey 500 goto hddboot80
- clear
- if ($lastKey == key[f1]); then goto filesys_menu_partition
- if ($lastKey == key[f2]); then memdisk /images/smrtboot.img
- if ($lastKey == key[f3]); then memdisk /images/gujin.img
- if ($lastKey == key[f4]); then diskemu /images/dosnavig.img
- if ($lastKey == key[f5]); then memdisk /images/fmaven.img
- if ($lastKey == key[f6]); then memdisk /images/offline.img
- if ($lastKey == key[f7]); then memdisk /images/ntfsread.img
- if ($lastKey == key[f8]); then memdisk /images/editbini.img
- if ($lastKey == key[esc]); then goto main_menu
-
- #
- # Filesystem Utilities - Partition Tools
- #
- filesys_menu_partition:
- set textColor = color[white on brightblue]
- clear
- set textColor = color[white on brightred]
- print " "
- print " ULTIMATE BOOT CD VERSION 2.21 "
- print " [Filesystem-Utilities] "
- print " "
- set textColor = color[white on brightblue]
- print " "
- set textColor = color[yellow on brightblue]
- print " Partition Tools "
- set textColor = color[white on brightblue]
- print " [F1] Ranish Partition Manager V2.44 "
- print " [F2] XFDISK V0.9.3b (Extended FDISK) "
- print " [F3] SPFDISK 2000-03p (Special FDISK) "
- print " [F4] TestDisk V5.1 (Check/undelete von Partitionen) "
- print " [F5] Partition Resizer V1.3.4 "
- print " [F6] Partition Saving V2.80 "
- print " [F7] Free FDISK V1.2.1 "
- print " [F8] MBRtool V2.2.100 "
- print " [F9] MBRWork V1.07b "
- print " "
- print " "
- print " "
- print " "
- print " "
- print " "
- print " "
- print " "
- set textColor = color[white on brightblue]
- print " Bitte waehlen Sie einen Eintrag (Mit ESC einen Schritt zurueck) "
- set textColor = color[white on brightblue]
-
- #
- # Filesystem Utilities - Partition Tools - Actions
- #
- getkey 500 goto hddboot80
- if ($lastKey == key[f1]); then memdisk /images/ranish.img
- if ($lastKey == key[f2]); then memdisk /images/xfdisk.img
- if ($lastKey == key[f3]); then memdisk /images/spfdisk.img
- if ($lastKey == key[f4]); then memdisk /images/testdisk.img
- if ($lastKey == key[f5]); then memdisk /images/presizer.img
- if ($lastKey == key[f6]); then memdisk /images/savepart.img
- if ($lastKey == key[f7]); then memdisk /images/fdisk.img
- if ($lastKey == key[f8]); then memdisk /images/mbrtool.img
- if ($lastKey == key[f9]); then memdisk /images/mbrwork.img
- if ($lastKey == key[esc]); then goto filesys_menu
-
- #
- # Memory Utilities
- #
- memory_menu:
- set textColor = color[white on brightblue]
- clear
- set textColor = color[white on brightred]
- print " "
- print " ULTIMATE BOOT CD VERSION 2.21 "
- print " [Memory-Utilities] "
- print " "
- set textColor = color[white on brightblue]
- print " "
- set textColor = color[yellow on brightblue]
- print " Memory-Diagnose "
- set textColor = color[white on brightblue]
- print " [F1] Memtest86 V3.1 "
- print " [F2] Memtest86+ V1.11 "
- print " [F3] Windows Memory Diagnostic "
- print " [F4] DocMem RAM Diagnostic V2.1b "
- print " "
- print " "
- print " "
- print " "
- print " "
- print " "
- print " "
- print " "
- print " "
- print " "
- print " "
- print " "
- print " "
- set textColor = color[white on brightblue]
- print " Bitte waehlen Sie einen Eintrag (Mit ESC einen Schritt zurueck) "
- set textColor = color[white on brightblue]
-
- #
- # Memory Utilities - Actions
- #
- getkey 500 goto hddboot80
- if ($lastKey == key[f1]); then diskemu /images/memtest.img
- if ($lastKey == key[f2]); then diskemu /images/memtestp.img
- if ($lastKey == key[f3]); then diskemu /images/windiag.img
- if ($lastKey == key[f4]); then diskemu /images/docmem.img
- if ($lastKey == key[esc]); then goto main_menu
- goto memory_menu
-
- #
- # System Utilities
- #
- system_menu:
- set textColor = color[white on brightblue]
- clear
- set textColor = color[white on brightred]
- print " "
- print " ULTIMATE BOOT CD VERSION 2.21 "
- print " [System-Utilities] "
- print " "
- set textColor = color[white on brightblue]
- print " "
- set textColor = color[yellow on brightblue]
- print " System-Information "
- set textColor = color[white on brightblue]
- print " [F1] AIDA16 V2.12 "
- print " [F2] NSSI V0.57.4 "
- print " [F3] PC-Config V9.33 "
- print " [F4] PCI V0.48b "
- print " "
- set textColor = color[yellow on brightblue]
- print " Benchmarks "
- set textColor = color[white on brightblue]
- print " [F5] System Speed Test 32 V4.78 "
- print " "
- print " "
- print " "
- print " "
- print " "
- print " "
- print " "
- print " "
- print " "
- print " "
- set textColor = color[white on brightblue]
- print " Bitte waehlen Sie einen Eintrag (Mit ESC einen Schritt zurueck) "
- set textColor = color[white on brightblue]
-
- #
- # System Utilities - Actions
- #
- getkey 500 goto hddboot80
- if ($lastKey == key[f1]); then memdisk /images/aida16.img
- if ($lastKey == key[f2]); then memdisk /images/nssi.img
- if ($lastKey == key[f3]); then memdisk /images/pcconfig.img
- if ($lastKey == key[f4]); then memdisk /images/pci.img
- if ($lastKey == key[f5]); then memdisk /images/sst.img
- if ($lastKey == key[esc]); then goto main_menu
- goto system_menu
-
- #
- # Linux Boot Disks
- #
- linux_menu:
- set textColor = color[white on brightblue]
- clear
- set textColor = color[white on brightred]
- print " "
- print " ULTIMATE BOOT CD VERSION 2.21 "
- print " [Linux-Bootdisketten] "
- print " "
- set textColor = color[white on brightblue]
- print " "
- set textColor = color[yellow on brightblue]
- print " Linux-Bootdisketten "
- set textColor = color[white on brightblue]
- print " [F1] Tom's Boot Disk V2.0.103 "
- print " [F2] Recovery Is Possible (RIP) V2.6 "
- print " [F3] BasicLinux V2.1 "
- print " [F4] Trinux V0.89 "
- print " "
- print " "
- print " "
- print " "
- print " "
- print " "
- print " "
- print " "
- print " "
- print " "
- print " "
- print " "
- print " "
- set textColor = color[white on brightblue]
- print " Bitte waehlen Sie einen Eintrag (Mit ESC einen Schritt zurueck) "
- set textColor = color[white on brightblue]
-
- #
- # Linux Boot Disks - Actions
- #
- getkey 500 goto hddboot80
- if ($lastKey == key[f1]); then memdisk /images/tomsrtbt.img
- if ($lastKey == key[f2]); then memdisk /images/rip.img
- if ($lastKey == key[f3]); then memdisk /images/basiclin.img
- if ($lastKey == key[f4]); then memdisk /images/trinux.img
- if ($lastKey == key[esc]); then goto main_menu
- goto linux_menu
-
- #
- # Others
- #
- others_menu:
- set textColor = color[white on brightblue]
- clear
- set textColor = color[white on brightred]
- print " "
- print " ULTIMATE BOOT CD VERSION 2.21 "
- print " [Verschiedenes] "
- print " "
- set textColor = color[white on brightblue]
- print " "
- set textColor = color[yellow on brightblue]
- print " Antiviren-Tools "
- set textColor = color[white on brightblue]
- print " [F1] F-Prot Antivirus for DOS V3.14b (Stand: 10.03.2004) *Nur fuer Privat "
- print " [F2] McAfee Antivirus V4.1.40 (Stand: 10.03.2004) *Nur fuer Privat "
- print " "
- set textColor = color[yellow on brightblue]
- print " BIOS-Tools "
- set textColor = color[white on brightblue]
- print " [F3] CMOS Password Recovery V4.3 "
- print " "
- set textColor = color[yellow on brightblue]
- print " Netzwerk-Tools "
- set textColor = color[white on brightblue]
- print " [F4] Freesco (Eindisketten-Router) V0.3.2 "
- print " "
- print " "
- print " "
- print " "
- print " "
- print " "
- print " "
- print " "
- print " "
- set textColor = color[white on brightblue]
- print " Bitte waehlen Sie einen Eintrag (Mit ESC einen Schritt zurueck) "
- set textColor = color[white on brightblue]
-
- #
- # Others - Actions
- #
- getkey 500 goto hddboot80
- if ($lastKey == key[f1]); then memdisk /images/fprot.img
- if ($lastKey == key[f2]); then memdisk /images/mcafee.img
- if ($lastKey == key[f3]); then memdisk /images/cmospwd.img
- if ($lastKey == key[f4]); then memdisk /images/freesco.img
- if ($lastKey == key[esc]); then goto main_menu
- goto others_menu
-
-