I am trying to make a multi OS boot CD with XP Home & Pro. I\'ve read some threads about the
\"no-emulation image type RAW\" error and that it is normal.
However, when I press enter at this point, the setup of the OS does not continue, all I get is the same screen again with the option to choose either 1 for XP Pro or 2 for Home if the hard drive is blank. If there is an OS on the drive already, it just boots the installed OS as normal rather than loading \"setup.exe\"
What am I doing wrong? I am using the xphmsect & xpprsect.dat files from Twinkie\'s site.
Here is the diskemu.cmd file I am using:
:start
cls
print
print Setup Menu
print ==========
print 1. Windows XP Professional
print 2. Windows XP Home
print 3. Windows Advance Server (Not Used)
print Esc) Boot from hard disk...
print
print Enter a choice:
:mainkey
; timeout is 30 seconds, default key is escape
getkey 30 esc
onkey 1 goto pro
onkey 2 goto srv
onkey 3 goto advsrv
onkey esc boot 80
; When no key found...
goto mainkey
;
:pro
run XPPRSECT.DAT
;
:srv
run XPHMSECT.DAT
;
:advsrv
run ASRVSECT.DAT
;
Thank you!
Jeanie