Jump to content

kayden75

Member
  • Posts

    1
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    United States

Everything posted by kayden75

  1. DirectBurn writes to the CD/DVD but doesn't add the info from the multiboot session - only the session of WinXP that you are modifying for an unattended install... I am encountering the same issues with the NTLDR missing, & I'm fairly certain all the files are correct. has a fix been found yet for this? here's my boot menu code if anyone needs it: cls print "\n" print "Press Enter to boot from DVD... \n" getkey 5 boot 0x80 if $lastKey == key[enter]; then goto menu # When no key found... goto boot # Printing the Interface menu: set textColor= color[white on black] set boldColor= color[cyan on black] cls print c "\cXXÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ \n" print c "\cXXDave's Multi-Boot DVD \n\n" print c "\cXXÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ \n\n" print "1) Windows XP Professional SP2 Corporate \n" print "2) Dell Branded Windows XP Professional SP2 Corporate \n" print "3) HP Branded Windows XP Professional SP2 Corporate \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 /PRO1.DAT if $lastKey == key[2]; then chain /PRO2.DAT if $lastKey == key[3]; then chain /PRO3.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 Help: cls print c "\n\cXXMulti-Boot DVD Help \n" print c "\cXXÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ \n" print "\n" print "Hit the key of your choice in the main menu -> \n" print "\n" print "\n" print "Press any key to return to main menu... \n" getkey goto menu end
×
×
  • Create New...