Making an Application Mandatory with MDT
Making Application Mandatory – How to pre-select or make applications mandatory in MDT by configuring the customsettings.ini file.
Useful external reference: Microsoft Learn.
Making Application Mandatory –
Useful external reference: Microsoft Learn.
Making Application Mandatory – Identifying the Application GUID
Useful external reference: Microsoft Learn.
Making Application Mandatory – First, you need to identify the GUID of the application you want to pre-select or make mandatory. This GUID can be found in the properties of the application within MDT.
Useful external reference: Microsoft Learn.
Making Application Mandatory – Configuring customsettings.ini
Useful external reference: Microsoft Learn.
Making Application Mandatory – To pre-select or make an application mandatory, add the following entries to your `customsettings.ini` file:
Useful external reference: Microsoft Learn.
Making Application Mandatory – 1. Pre-selecting an Application
Useful external reference: Microsoft Learn.
Making Application Mandatory – To pre-select an application but allow it to be deselected, use the `Applications` variable:
Useful external reference: Microsoft Learn.
[Settings]
Priority=Default
[Default]
Applications001={b6ff132f-9c2c-4cee-872c-91834d648e6f}
Applications002={another-app-guid}
Applicationsxxx={additional-app-guids}
Making Application Mandatory – 2. Making an Application Mandatory
Useful external reference: Microsoft Learn.
Making Application Mandatory – To make an application mandatory so that it cannot be deselected, use the `MandatoryApplications` variable:
Useful external reference: Microsoft Learn.
[Settings]
Priority=Default
[Default]
MandatoryApplications001={e3e7a6f3-be2e-4cb6-9ba6-cdb3bc9ef8f6}
MandatoryApplications002={another-mandatory-app-guid}
MandatoryApplicationsxxx={additional-mandatory-app-guids}
Making Application Mandatory – Example customsettings.ini
Useful external reference: Microsoft Learn.
Making Application Mandatory – Here is an example of a `customsettings.ini` file with both pre-selected and mandatory applications:
Useful external reference: Microsoft Learn.
[Settings]
Priority=Default
[Default]
; Pre-select applications
Applications001={b6ff132f-9c2c-4cee-872c-91834d648e6f}
Applications002={d3e9a6d3-be2e-4ab6-9ba6-cdb3bc9ef8f6}
; Mandatory applications
MandatoryApplications001={e3e7a6f3-be2e-4cb6-9ba6-cdb3bc9ef8f6}
MandatoryApplications002={f4e8a6d4-ce3f-4db7-9cb7-cdb3bc9ef8f7}
Making Application Mandatory –
Useful external reference: Microsoft Learn.
