ok, i have got the stuff and tested it on three different PC's (2x AMI Bios, one only good for USB-FDD, the other one
boots up all and i also tested the stuff on a Phoenix Bios with an AMD 64 3500 CPU).
first of all, my point from before was right that the boot loader from the master boot record is searching first for any grub
loader on the hard drives (which means, that if you have one, it will boot up before your usb stick boots).
the other problem was with the phoenix bios, which appears not to be compatible with the grub boot loader from the
hiren files (it didn't boot anything, because it couldn't find anything, maybe there is an easy solution for it, but i didn't
search).
and of course, the hiren's stuff didn't work at all on the bios which can do only usb-fdd (can't find the stuff).
another problem was, that most of the hiren's stuff caused some problems on the pc with the phoenix bios.
the mouse was acting weird and the speaker was beeping because of some internal errors (but that was the same
with the older versions).
that was after i changed the mbr of course (before it didn't boot at all with the original).
BUT.....i think it still is a great improvement compared to the last versions, it's much more easier to implement it to any
kind of compilation and the menu works much better then before due to the fact, that it is much more compact with the
grub boot files.

and the real exciting thing is the new so called "MINI WINDOWS XP", which really works under any kind of condition!!!
i didn't had the time right now to check it out (how it really works), but it was the first xp based system which ever
runs on my old pc who can boot only from usb-fdd (unbelievable).
after that i also tried to boot it up from a normal usb stick from a second partition (the first one is fat16 smaller than 2gb
and the second one can be everything).
it was working also, boots up normally, but after boot up, it naturally didn't see the second partition on the stick
from where it was booting before (?) which means, that all the included software was not working, but it still boots up!
i which there would be a window during boot up in which you can choose aether the normal xp usb drivers or the ones
from the "USB_MultiBoot_10 project", which allow xp to see every kind of usb stick as a fixed disk.
normally when it starts, there is a pop up window in the middle of the screen and in the upper left corner is the menu
to choose from some software to run (there is also some useful stuff to chose from).
so, to get rid of the phoenix bios problem, there is still the need to install a normal windows 98 or me mbr.
my autoexec.bat:
@echo off
if "%config%"=="1" GOTO 1
if "%config%"=="2" GOTO 2
if "%config%"=="3" GOTO 3
:1
GOTO END
:2
rem LH MSCDEX /D:USBCD001
MSCDEX.EXE /D:banana /L:R
cd \dosapps\VC
VC
GOTO END
:3
GOTO END
:END
the config.sys:
DEVICE=HIMEM.SYS /testmem:off
FILES=50
BUFFERS=30
dos=high,umb
[menu]
menuitem=1,Start GRUB4DOS
menuitem=2,Load CD-ROM Driver and start Volkov Commander
menuitem=3,go on and boot something???
menudefault=1
menucolor=7,0
[1]
rem load grub.exe before emm386.exe
device=grub.exe --config-file=MENU.LST
rem --bypass --time-out=20
[2]
DEVICEHIGH=cd1.SYS /D:banana
rem DEVICE=cd1.SYS /D:banana /P:1f0,14
rem DEVICE=cd1.SYS /D:banana /P:170,15
rem DEVICE=cd1.SYS /D:banana /P:170,10
rem DEVICE=cd1.SYS /D:banana /P:1e8,12
rem DEVICE=cd1.SYS /D:banana /P:1e8,11
rem DEVICE=cd1.SYS /D:banana /P:168,10
rem DEVICE=cd1.SYS /D:banana /P:168,9
[3]
[COMMON]
DEVICEHIGH=\emm386.exe
LASTDRIVE=Z
the menu.lst:
#
# Grub4Dos boot menu
#
find --set-root /just_there.txt
splashimage /splash/The_Moon.xpm.gz
foreground = F0F000
background = 0000CA
#color black/cyan yellow/cyan
#timeout 30
default /default
title Start Hiren's BootCD
find --set-root /HBCD/boot.gz
map --mem /HBCD/boot.gz (fd0)
map --hook
chainloader (fd0)+1
rootnoverify (fd0)
map --floppies=1
boot
title DSL ([inappropriate] Small Linux) -NTFS Read Only- Knoppix
find --set-root /grldr
kernel /dsl/linux24 ramdisk_size=100000 init=/etc/init lang=us apm=power-off vga=791 initrd=minirt24.gz nomce noapic qemu quiet BOOT_IMAGE=knoppix frugal
initrd /dsl/minirt24.gz
title puppy-4.00-k2.6.21.7-seamonkey
find --set-root /grldr
kernel /puppy/vmlinuz pfix=usbcard root=/dev/ram0 initrd=initrd.gz PMEDIA=usbflash PKEYS=de
initrd /puppy/initrd.gz
boot
title Ubuntu-8.04-desktop-i386
find --set-root /grldr
kernel /casper/vmlinuz boot=casper root=/dev/ram ramdisk_size=1048576 rw locale=de_DE
initrd /casper/initrd.gz
boot
title ERD Commander 2007
find --set-root /GRLDR
chainloader /NTLD1
title PLOP Bootmanager
find --set-root /grldr
kernel /memdisk
initrd /images/plop.img
title BootitNG
find --set-root /grldr
kernel /memdisk
initrd /images/BOOTITNG.IMA
title FreeDOS Boot
find --set-root /grldr
kernel /memdisk
initrd /images/FreeBoot.img
title Launch "The Ultimate Boot CD for Windows"
fallback 1
find --set-root /minint/setupldr.bin
chainloader /minint/setupldr.bin
title Mini Windows Xp
find --set-root /HBCD/XPLOADER.BIN
chainloader /HBCD/XPLOADER.BIN
title reboot
savedefault --wait=2
reboot
title halt
savedefault --wait=2
halt
some entries in the autoexec.bat and config.sys are not needed, i just let remain them in case...