原贴地址:http://blogs.technet.com/mniehaus/archive/2009/07/07/mdt-2010-new-feature-15-finish-actions.aspx

When you perform a Lite Touch deployment, the task sequence runs through to completion, and then you will see a summary wizard that shows you any errors or warnings that may have occurred during the process.  That wizard could be skipped by setting “SkipFinalSummary=YES” in CustomSettings.ini.  (One behavior worth pointing out:  With MDT 2010 Beta 2, if the task sequence fails, the SkipFinalSummary setting will be ignored and the wizard will be shown anyway.)
当你执行一个LTI部署时,当运行结束,你会看到一个总结画面,显示部署过程中的错误和警告。通过设置SkipFinalSummary=YES可以跳过这个画面(注意的是,在MDT2010 Beta 2中,如果你的TS失败了,还是会显示最终的总结画面)

A common request we received was to provide a mechanism for specifying what should be done after the wizard is completed (or if it is skipped).  With MDT 2010 Beta 2, we have provided that through a “FinishAction” variable that you can set in CustomSettings.ini.  Valid values include:
我们常常收到建议,在部署完成后,应当提供选择让计算机做什么。在MDT2010 Beta 2里,我们提供了这个FinishAction的变量,可选值包括:
  • SHUTDOWN.  When the process is complete, turn off the computer.关机
  • RESTART or REBOOT.  When the process is complete, reboot the computer.重启计算机
  • LOGOFF.  When the process is complete, log off.注销
If you don’t specify any value, the default is to just exit like was done in MDT 2008.  The shutdown, restart, or logoff activities happen after the Lite Touch scripts have cleaned up the machine (copying logs to the network, removing MININT, removing autologon settings, etc.).  In the case of restart or logoff, the machine will end up at the logon screen, ready for a user to log on.
如果你不写任何值,则像MDT2008一样。关机重启或者注销这些操作发生在脚本完成清理工作之后(拷贝日志、删除MININT、清除自动登录等)。当重启或注销后,系统会停留在登录界面等待用户登录