When using the build and capture task sequence in MDT Lite Touch it make perfect sense to add date information to the WIM file name created. Since CustomSettings.ini understands inline VBScript you can simply set the following:
BackupFile=%TaskSequenceID%_#year(date) & "-" & day(date) & "-" & month(date)#.wim
Note: Make sure you don’t have “ (curly quotes) in the .ini file but instead use " (straight quotes)
Sample
Below is the output from simulating (in PowerShell) a sample CustomSettings.ini file.
[Settings] Priority=Init, Default [Init] TaskSequenceID=REF-W7SP1-X64 [Default] BackupFile=%TaskSequenceID%_#year(date) & "-" & day(date) & "-" & month(date)#.wim
Running the MDT simulation process in PowerShell.
More ...