1、Microsoft Windows7 AIK提取X86或X64的pxeboot.12及bootmgr.exe文件

2、解压MDT2010生成的LiteTouchPE_x86.iso文件提取Boot和Sources目录下的所有文件

3、在PXElinux下把下面的文件和目录放到PXE服务器的根目录

pxeboot.12改名为pxeboot.0

bootmgr.exe

boot目录及目录下的所有文件

Sources目录及目录下的所有文件

配置PXELinux启动文件pxelinux.cfg下的Default文件

LABEL 1
MENU PASSWD 123456
MENU LABEL ^A----Boot Multek MDT 2010 Deployment Client X86
kernel /boot/pxeboot.0

为了增加安全性通过MENU PASSWD 来设置密码。

 

 

4、在GRUBPXE下配置,和PXELinux方法是一样的。

配置GRUBPXE启动文件在根目录下的grldr文件或menu.lst下的Default文件

title 【1】-- Boot Multek MDT 2010 Deployment Client  X86
pxe keep
chainloader --force (pd)/boot/pxeboot.0

 

5、默认情况下启动文件是Sources目录下的Boot.wim文件,如需要更改位置需要编辑Boot目录下的BCD文件

可以通过下面的批处理来改变位置:

 

set BCD-File=X:\boot\bcd    //设置BCD文件存放的路径
del %BCD-File%
Bcdedit /createstore %BCD-File%
Bcdedit /store %BCD-File% /create {ramdiskoptions} /d "MDT 2010 Client PE"
Bcdedit /store %BCD-File% /set {ramdiskoptions} ramdisksdidevice  boot
Bcdedit /store %BCD-File% /set {ramdiskoptions} ramdisksdipath  \boot\boot.sdi
for /f "tokens=2 delims={}" %%x in ('Bcdedit /store %BCD-File% /create /d "MDT 2010 Deployment Client X86" /application osloader') do set "guid1={%%x}"
Bcdedit /store %BCD-File% /set %guid1% systemroot \Windows
Bcdedit /store %BCD-File% /set %guid1% detecthal Yes
Bcdedit /store %BCD-File% /set %guid1% winpe Yes
Bcdedit /store %BCD-File% /set %guid1% osdevice ramdisk=[boot]\Boot\mdt2010_x86.wim,{ramdiskoptions}  
Bcdedit /store %BCD-File% /set %guid1% device ramdisk=[boot]\Boot\mdt2010_x86.wim,{ramdiskoptions}
Bcdedit /store %BCD-File% /create {bootmgr} /d "MDT 2010 Deployment Client X86"
Bcdedit /store %BCD-File% /set {bootmgr} timeout 30
Bcdedit /store %BCD-File% /set {bootmgr} displayorder %guid1%
Bcdedit /store %BCD-File% /enum all
pause

 

set BCD-File=X:\boot\bcd    //设置BCD文件存放的路径

 

Bcdedit /store %BCD-File% /set %guid1% osdevice ramdisk=[boot]\Boot\mdt2010_x86.wim,{ramdiskoptions}   //设置WIM文件的存放路径
Bcdedit /store %BCD-File% /set %guid1% device ramdisk=[boot]\Boot\mdt2010_x86.wim,{ramdiskoptions}     //设置WIM文件的存放路径