I make in Khauyeung fine work a cosmetic edition.
I wrote a short routine in diskemu.cmd to emulate xp cd behaviour during boot up.
; by Michael K.H. Au-Yeung, on 02/15/2002
; (CD-Rom multiboot loader and disk emulator by Bart Lagerweij)
;
; Some notes:
; - do not use tabs in this file! Use spaces!
; - the key "tags" like "esc", "entr", ... must be lowercase!
;
; I have added this new lines **********************
:boot
cls
print
print Press Enter to boot from CD...
getkey 7 esc
onkey esc boot 80
onkey entr goto start
; When no key found...
goto boot
; till here ******************************************
:start
cls
print
print --------------------------------------------------------------------------------
print Windows XP Professional-Home Editions 8n1 CD (English Ver.) by khauyeung-oscar
print --------------------------------------------------------------------------------
print F1=Help 1) Setup Windows XP Professional (MSDN, Corporate)
print 2) Setup Activated Windows XP Home Edition (OEM)
print 3) Setup Unattended Windows XP Professional
print 4) Setup Unattended Windows XP Home Edition
print 5) Setup Untouched Windows XP Professional (OEM)
print 6) Setup Untouched Windows XP Home Edition (OEM)
print 7) Setup Untouched Windows XP Professional (Retail)
print 8) Setup Untouched Windows XP Home Edition (Retail)
print -----------------------------------------------------
print a) Boot Windows 98 [Version 4.10.2222] from CD-Rom
print b) Boot Windows 98 to run NTFSDOS-Pro from CD-Rom
print c) Run Partition Magic 7 from a RAM Drive
print d) Development->
print q) Quit to command prompt
print r) Reboot
print Esc) Boot first harddisk
print
print Hit the key of choice:
:mainkey
; timeout is 20 seconds, default key is escape
;getkey 20 esc change this with getkey only***************
getkey
onkey 1 goto wpro
onkey 2 goto wpah
.........................................
|