原帖地址:http://blogs.technet.com/mniehaus/archive/2009/06/27/mdt-2010-new-feature-3-suspend-and-resume-a-lite-touch-task-sequence.aspx

MDT 2010 includes a new script called LTISuspend.wsf that isn’t actually part of any of the task sequence templates – by default it’s not used.  But if you add it into a task sequence during the “State Restore” phase activities, it will allow you to temporarily suspend the task sequence.  This is intended for reference p_w_picpath creation processes where there might be some activities that you just can’t possibly automate – you can make the changes by hand and then when finished restart the task sequence to create your p_w_picpath.  (If there is any way to do the automation, you should – this is for those “I have no other choice” situations.)
MDT2010新添加了一个脚本LTISuspend.wsf,这个脚本并不包含在任何一个的Task Sequence的模版中,默认情况下这个脚本并没有使用。这个脚本的作用是在“State Restore”阶段,你可以暂停执行Task Sequence。这个脚本的好处显而易见,如果你在制作参考机时,碰到无法自动化执行的步骤,就可以暂停TS,等调整好设置在继续TS。
To use this new script, add a step into the task sequence with the following command line:
要使用这个脚本,你在TS中添加一个如下命令行:
cscript.exe %SCRIPTROOT%\LTISuspend.wsf

There will be a “Resume Task Sequence” shortcut on the desktop that should be used to eventually restart the task sequence from the next step after the suspend step.  You can do anything you want while the task sequence is suspended, including rebooting, but when you are done you should make sure that you are logged in as the local Administrator account again, and that UAC is still disabled for the local Administrator account.
接下来桌面上会生成一个“Resume Task Sequence”的快捷方式,当需要恢复时执行这个快捷方式即可(重启后也能执行),不过要记得你仍是用administrator用户登录,否则UAC会阻止运行。

This same capability is used by MDT 2010 in other ways – more on those later.
在其他地方MDT2010也会用到此功能