1. import source files to managerment computer
2. creater task sequence and boot p_w_picpathr for reference computer
3. update deployment share with sourece files,boot p_w_picpath and task sequence
4. transfer source files,boot p_w_picpath and task sequence from the deployment share to the reference computer
5. run deployment wizard on the reference and capture p_w_picpath
6. send captured p_w_picpath back to the management computer
7. create task sequence and boot p_w_picpath for target computer using p_w_picpath captured in os as source
8. update deployment share with boot p_w_picpath,source files and task sequence
9. transfer source files ,boot p_w_picpath and task sequence from the deployment share to the target computers
10. run deployment wizard on ther target computers
bootstrap.ini 提供用于部署的最基本配置
customsettings.ini 定义如何调用数据库 定义数据库中无法定义的设
任务序列:是在命令行级别执行客户端计算机上的多个步骤或任务,且无需用户干预的机.
Unattend.xml 设置计算机使用环境.实现 out-of-box
使用windows映像管理器创建生成
在CustomSetting.ini的相关的说明::

[Default]
OSInstall=Y
SkipAppsOnUpgrade=YES
SkipSummary=YES(忽略部署环境中最后的摘要)
SkipCapture=YES
SkipAdminPassword=YES
SkipProductKey=YES(忽略产品密钥的输入)
SkipLocaleSelection=YES
SkipDomainMembership=YES(忽略加入域的步骤,即默认为工作组)
KeyboardLocale=0804:00000409(指定键盘区域为中文简体)
InputLocale=0804:00000409(指定输入法为中文简体)
UserLocale=0804:00000409(指定用户默认语言为中文简体)
SkipTimeZone=YES(忽略时区设置)
TimeZone=210(指定时区代码)
TimeZoneName=China Standard Time(指定时区的名称)
DoCapture=NO
SkipUserData=YES
UserDataLocation=NONE
SkipFinalSummary=YES(忽略部署的最后结果摘要,可根据需要选择,如果之前已经进行过完整的测试,那么可以忽略该摘要。)
SkipTaskSequence=YES(忽略任务序列的选择)
BuildID=001(指 定任务序列ID,这个变量同样是定义 Task Sequence ID 的,但是由于该变量沿用BDD2007中的变量,并且是内置变量,无法通过 MDT 控制台进行编辑,我们可以将其看作为一个索引值。在实际应用中,BuildID和TaskSquenceID必须一同使用。否则单一指定 TaskSquenceID无效。)
TaskSquenceID=001(指定任务序列的ID)
SkipComputerName=YES(忽略计算机名)



在MDT 2008,  Windows PE 启动包括以下过程
1、Windows PE 启动 CMD.EXE运行 STARTNET.CMD.
2、STARTNET.CMD 启动 WPEINIT.EXE.
3、WPEINIT.EXE 初始化网络和其它组件,然后运行“WSCRIPT.EXE X:\Deploy\Scripts\LiteTouch.wsf”.
4、LiteTouch.wsf 运行部署向导
 
在MDT 2010, 启动过程如下
1、Windows PE 启动 BDDRUN.EXE.
2、BDDRUN.EXE 启动 WPEINIT.EXE.
3、WPEINIT.EXE 初始化网络和其它组件,然后运行“WSCRIPT.EXE X:\Deploy\Scripts\LiteTouch.wsf”.
4、LiteTouch.wsf 运行部署向导


相关的技术材料如下::
clip_p_w_picpath002