Hi I must be doing something wrong. Could some king person check what I have done to ensure that I have not done anything silly?
Thanks
David
My Proceedure:
I have created UBCD50B12 using:
c:\ubcd50b12\ubcd\tools\win32\ubcd2usb\ubcd2usb.bat
I then updated my main.cfg on my Flash Drive (I tried with and without the "boot" keyword)
F:\ubcd\menus\syslinux\main.cfg
Code:
MENU INCLUDE /ubcd/menus/syslinux/defaults.cfg
DEFAULT /boot/syslinux/menu.c32
PROMPT 0
F1 /ubcd/menus/syslinux/pmagic1.hlp
F2 /ubcd/menus/syslinux/pmagic2.hlp
[color=darkred]LABEL -
MENU LABEL Test
COM32 /boot/syslinux/chain.c32
APPEND ntldr=/BOOTMGR[/color]
LABEL -
MENU LABEL System
KERNEL /boot/syslinux/menu.c32
APPEND /ubcd/menus/syslinux/system.cfg
etc...
I then copied the BCD from my Vista SP2 DVD d:\boot\BCD to my Flash Drive F:\boot\BCD
I ran the batch file:
F:\boot\bcdupdate.bat
Code:
Rem BCD (boot configuration data) editor for multiple vista pe
REM THIS IS THE ORIGINAL BCD FILE EXTRACTED FROM ANY VISTA WINPE / VISTA DVD (I USED VISTA INSTALLATION)
set BCD-File="f:\boot\bcd"
REM SET THE NAME FOR THE VISTA PE HERE
set pename="Network Boot Windows PE"
REM SET THE NAME FOR THE WIM.FILE HERE WITH PATH
set filena=[boot]\sources\boot32.wim
for /f "eol=r tokens=1-2" %%a in ('bcdedit /store %BCD-File% /ENUM all') do set rdo=%%b
for /f "tokens=1-7" %%a in ('Bcdedit /store %BCD-File% /copy {default} /d %pename%') do set guid1=%%g
bcdedit /store %BCD-File% /set %guid1:~0,38% DEVICE ramdisk=%filena%,%rdo%
bcdedit /store %BCD-File% /set %guid1:~0,38% OSDEVICE ramdisk=%filena%,%rdo%
bcdedit /store %BCD-File% /ENUM
pause
I then coppied the chain.c32 from
http://www.boot-land.net/forums/index.p ... st&id=8729to F:\boot\syslinux\chain.c32
Finally I copy my wim image to F:\[BOOT]\sources\boot32.wim
wim info:
Code:
F:\[BOOT]\sources>imagex /info boot32.wim
ImageX Tool for Windows
Copyright (C) Microsoft Corp. All rights reserved.
WIM Information:
----------------
GUID: {897264f1-1257-4f8a-bb8f-c8ba6eecef2f}
Image Count: 1
Compression: LZX
Part Number: 1/1
Boot Index: 1
Attributes: 0x8
Relative path junction
Available Image Choices:
------------------------
<WIM>
<TOTALBYTES>120230082</TOTALBYTES>
<IMAGE INDEX="1">
<NAME>Network Boot Windows PE</NAME>
<WINDOWS>
<ARCH>0</ARCH>
<PRODUCTNAME>Microsoft« Windows« Operating System</PRODUCTNAME>
<PRODUCTTYPE>WinNT</PRODUCTTYPE>
<PRODUCTSUITE></PRODUCTSUITE>
<LANGUAGES>
<LANGUAGE>en-US</LANGUAGE>
<DEFAULT>en-US</DEFAULT>
</LANGUAGES>
<VERSION>
<MAJOR>6</MAJOR>
<MINOR>0</MINOR>
<BUILD>6001</BUILD>
<SPBUILD>18000</SPBUILD>
</VERSION>
<SYSTEMROOT>WINDOWS</SYSTEMROOT>
</WINDOWS>
<DIRCOUNT>537</DIRCOUNT>
<FILECOUNT>3358</FILECOUNT>
<TOTALBYTES>354176786</TOTALBYTES>
<CREATIONTIME>
<HIGHPART>0x01CA1F30</HIGHPART>
<LOWPART>0x8B118F9F</LOWPART>
</CREATIONTIME>
<LASTMODIFICATIONTIME>
<HIGHPART>0x01CA1F30</HIGHPART>
<LOWPART>0x8B5EE4A2</LOWPART>
</LASTMODIFICATIONTIME>
</IMAGE>
</WIM>
I then boot with my USB drive, choose Test from the menu and get:
Code:
Loading the boot file...
Failed to load the boot file
boot:
Any ideas?