multibootroot.JPG (62K)
Number of downloads: 107
cdboot.JPG (34.55K)
Number of downloads: 99
This post has been edited by Halonix: 26 September 2005 - 05:33 PM
Posted 26 September 2005 - 04:51 PM
multibootroot.JPG (62K)
cdboot.JPG (34.55K)
This post has been edited by Halonix: 26 September 2005 - 05:33 PM
Posted 26 September 2005 - 07:50 PM
This post has been edited by LiquidSage: 26 September 2005 - 07:52 PM
Posted 27 September 2005 - 09:11 AM
LiquidSage, on Sep 26 2005, 06:50 PM, said:
boot: cls print "\n" print "Press Enter to boot from CD... \n" getkey 5 boot 0x80 if $lastKey == key[enter]; then goto time # When no key found... goto boot # Function to display time of day time: set hour = $timeHour set ampm = "am" if $timeHour > 12; then set hour = $timeHour - 12 if $timeHour > 12; then set ampm = "pm" set time = "$hour:$timeMinute$ampm" # Function to display date date: set month = "n/a" if $dateMonth == 1; then set month = "Jan." if $dateMonth == 2; then set month = "Feb." if $dateMonth == 3; then set month = "Mar." if $dateMonth == 4; then set month = "Apr." if $dateMonth == 5; then set month = "May." if $dateMonth == 6; then set month = "Jun." if $dateMonth == 7; then set month = "Jul." if $dateMonth == 8; then set month = "Aug." if $dateMonth == 9; then set month = "Sep." if $dateMonth == 10; then set month = "Oct." if $dateMonth == 11; then set month = "Nov." if $dateMonth == 12; then set month = "Dec." set date = "$month$dateDay,$dateYear" # Printing the Interface menu: set textColor= color[grey on black] set boldColor= color[cyan on black] cls print c "\n\cXXÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ<\c0B$time $date\cXX>ÄÄ \n\n" print c "\cXXÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ \n\n" print "1) Windows Server 2003 Corporate \n" print "2) Windows Pre-Installation Environment \n" print "\n" print "Q) Quit to Command Prompt \n" print "R) Reboot \n" print "ESC) Boot 1st Harddisk \n" print c "\n" MainKey: getkey 20 boot 0x80 if $lastKey == key[1]; then chain /WIN2003.DAT if $lastKey == key[1]; then chain /WINPE.DAT if $lastKey == key[q]; then end if $lastKey == key[r]; then reboot if $lastKey == key[F1]; then goto Help if $lastKey == key[esc]; then boot 0x80 end
Posted 27 September 2005 - 10:36 AM
if $lastKey == key[F1]; then goto Helpeven though you have no Help section. That won't cause any problems (unless someone hits F1), but just something I thought I'd point out.
This post has been edited by Screwz Luse: 27 September 2005 - 10:37 AM
Posted 27 September 2005 - 03:15 PM
Screwz Luse, on Sep 27 2005, 09:36 AM, said:
if $lastKey == key[F1]; then goto Helpeven though you have no Help section. That won't cause any problems (unless someone hits F1), but just something I thought I'd point out.
Posted 27 September 2005 - 05:59 PM
Posted 28 September 2005 - 10:45 AM
LiquidSage, on Sep 28 2005, 09:36 AM, said: