Deployment
The virtual machine will go through the boot process, as shown in the following screenshot:
We must then specify the task sequence that we wish to run:
Note that now our task sequence engine skipped some screens. Our CustomSettings.ini
has specified the following:
SkipCapture=NO SkipAdminPassword=YES SkipProductKey=YES SkipBitLocker=YES SkipDomainMembership=YES JoinWorkgroup=Workgroup SkipFinalSummary=YES SkipLocaleSelection=YES SkipSummary=YES SkipTimeZone=YES SkipUserData=YES
As we specified SkipCapture=NO
in the preceding code, the Capture Image screen wizard is displayed as follows:
The task sequence will then execute through the OS install, apply Windows updates and application installations, and then Sysprep and capture the image:
After the Sysprep is complete, the WIM is captured. This cannot be done with the running system, so MDT needs...