Help - Search - Members - Calendar
Full Version: I did what it said in guide and was trying to make iso, but it doesnt
MSFN Forums > Unattended Windows Discussion & Support > Multi-Boot CD/DVDs

   


Google Internet Forums Unattended CD/DVD Guide
ajy0903
I did what it said in guide and was trying to make iso, but it doesnt work, anyone can help me?
And i was trying using many different software to make an iso and i burned, and it didnt boot.
IcemanND
What part of it didn't work? Any errors?
ajy0903
And i was trying these two parts:

double clicking the "cdshw.com". and it worked fine until the menu comes up. i pressed 2 to go to XP Home and then i clicked "1," just like my
code below. then i got this error: Error File not found
[Command: chain] [Line: 101.2] [File: cdshell.ini]

start cdimage.exe -lAIODVD -t08/23/2001,09:00:00 -b\AIO-DVD\BOOT\loader.bin -h -n -o -m \AIO-DVD C:\AIODVD.iso

And i tried to make the iso with GUI version of cdimage.exe (it had bunch of errors) and Easy Media Creator 9 (i think i burned it to dvd right, but when i
boot the dvd, didn't even boot from it)
And this is the code that i used in the cdshell.ini:

boot:
cls
print "\n"
print "Press Enter to boot from DVD... \n"
getkey 30 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 "\cXXAdvanced Multi-Boot DVD v1.7\n\n"
print l "\cXXPress \c0BF1 \cXXfor Help"; print r "\c0Bckite@portraitofakite.com \n"
print c "\cXX컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴 \n\n"
print "1) Windows XP Professional SP2 OEM \n"
print "2) Windows XP Home SP2 OEM \n"
print "3) Windows XP MCE SP2 OEM \n"
print "\n"
print "X) More Options... \n\n"
print "Q) Quit to Command Prompt \n"
print "R) Reboot \n"
print "ESC) Boot 1st Harddisk \n"
print c "\n"

MainKey:
getkey 30 boot 0x80
if $lastKey == key[1]; then goto XP_Pro
if $lastKey == key[2]; then goto XP_Home
if $lastKey == key[3]; then goto XP_MCE
if $lastKey == key[q]; then end
if $lastKey == key[r]; then reboot
if $lastKey == key[x]; then goto MoreOptions
if $lastKey == key[F1]; then goto Help
if $lastKey == key[esc]; then boot 0x80

MoreOptions:
cls
print r "\n\cXXPress \c0BF1 \cXXfor Help \n"
print c "\n\cXXMore Options \n"
print c "\cXX컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴 \n"
print "1) View Serial Numbers \n"
print c "\n\n"
print "Press any key to return to main menu... \n"

MoreOptions_Key:
getkey 20 goto menu
if $lastKey == key[1]; then goto SerialNumbers
goto menu

SerialNumbers:
cls
print r "\n\cXXPress \c0BF1 \cXXfor Help \n"
print c "\n\cXXSerial Numbers\n"
print c "\cXX컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴"
type /Serial~1.txt
print c "\n\n"
print "Press any key to return to main menu... \n"
getkey
goto menu

XP_Home:
cls
print r "\n\cXXPress \c0BF1 \cXXfor Help \n"
print c "\n\cXXMicrosoft Windows XP Home SP2 OEM \n"
print c "\cXX컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴 \n"
print "1) Regular(OEM Version) \n"
print c "\n\n"
print "Press any key to return to main menu... \n"

XP_Home_Key:
getkey 20 goto menu
if $lastKey == key[1]; then chain /HOM1.dat
if $lastKey == key[F1]; then goto Help
goto menu

XP_MCE:
cls
print r "\n\cXXPress \c0BF1 \cXXfor Help \n"
print c "\n\cXXMicrosoft Windows XP Media Center Edition 2005 \n"
print c "\cXX컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴 \n"
print "1) Regular(OEM Version) \n"
print c "\n\n"
print "Press any key to return to main menu... \n"

XP_MCE_Key:
getkey 20 goto menu
if $lastKey == key[1]; then chain /MCE1.dat
if $lastKey == key[F1]; then goto Help
goto menu


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 "Install Types \n"
print "컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴?\n"
print "Regular(OEM Version) - Install will prompt you for all information during setup. \n"
print "\n"
print "\n"
print "Press any key to return to main menu... \n"
getkey
goto menu
end


Can anyone tell me, wether i did wrong in here?
And help me fixing it?
ajy0903
nvm.
i just tried deleting the codes: "if $lastKey == key[1]; then chain /HOM1.dat" and "if $lastKey == key[1]; then chain /MCE1.dat"
and made made iso, and burned to dvd, it boots fine.
yay me.




Google Internet Forums Unattended CD/DVD Guide

This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.