MDT Bundle creation options
You must customize your MDT deployment bundle by specifying the required options in the parameters.ini configuration file.
The following sections include parameters that you specify to create and customize your MDT Bundle.
General
- target
- Specifies a directory under which the MDTBundle and DeploymentShare directories are created. If this directory does not exist, it is created. For example, C:\BigFix OSD.
- debug
- Set to 0 to turn off debugging, 1 to turn on light debugging, 2 to turn on high debugging (requires some user interaction).
- wimtoolkit
- Specify the Windows Kit to use for the creation of the MDT Bundle. The kit that you specify must
exist on the system where you are running the tool. Possible values are:
- WADK80
- To use Windows Assessment and Deployment Kit for Windows 8.0.
- WADK81
- To use Windows Assessment and Deployment Kit for Windows 8.1.
- WADK10
- To use Windows Assessment and Deployment Kit for Windows 10 or Windows Assessment and Deployment Kit for Windows 11.
- WADK10_1607
- To use Windows Assessment and Deployment Kit for Windows 10 Version 1607.
- WADK10_1703
- To use Windows Assessment and Deployment Kit for Windows 10 Version 1703.
- WAIK
- To use Windows Automated Installation Kit.
- usmt4x86location
- Specify the path of USMT Version 4 (32-bit). These files are necessary to migrate user data from Vista computers - and refer to a previous installation of Windows AIK
- usmt4x64location
- Specify the path of USMT Version 4 (64-bit). These files are necessary to migrate user data from Vista computers - and refer to a previous installation of Windows AIK.
- usmt301x86location
- Specifies the path of USMT Version 3 (32-bit). This parameter is optional.
- usmt301x64location
- Specifies the path of USMT Version 3 (64-bit). This parameter is optional.
MDTsources
This section specifies the locations of the OS resources (ISO files) that are used to create the DeploymentShare and MDTBundle. You can add an arbitrary number of media, but only a maximum of one per OS, architecture, and operating system service pack will be included in the resulting MDT Bundle.
- media1
- Specifies an install media path for the OS resources. See the examples and explanations in the parameters.ini file. For additional media paths, use media2, media3, and so on.
- mediaisodir
- Specifies the full local path to the directory containing the ISO images.
- createmediaonly=yes
- Specifies whether only OS resources are to be generated for the specified media items. This parameter places the OS resources in the target directory and does not create an MDT Bundle.
WinPECustom
The WinPECustom section allows for the advanced customization of the preinstallation environment that is generated by this tool. You can place custom content into WinPE and have commands run at the beginning and end of the WinPE sequence. You can specify the following parameters:
- sourcePath
- path that is copied into the Windows PE.
- destinationFolder
- Windows PE root folder that contains the custom content.
- preCommand
- optional command that runs before starting the WinPE sequence.
- postCommand
- Optional command to run before rebooting.
sourcePath=C:\customContent
destinationFolder=customScript
preCommand=call X:\customScript\prerun.bat
postCommand=call X:\customScript\postrun.bat
These example parameters copy all the files from C:\customContent so that Windows PE will have them under X:\customScript.
call
X:\customScript\prerun.bat
is started before task execution.
call
X:\customScript\postrun.bat
is started after task execution.