Quantcast
Channel: Deployment Research - Johan Arwidmark
Viewing all articles
Browse latest Browse all 168

Adding date to the captured WIM File in MDT

$
0
0

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

 

image
Running the MDT simulation process in PowerShell.


More ...

Viewing all articles
Browse latest Browse all 168

Trending Articles