MDT - Deployment Share Properties

MDT settings I've used when creating a Windows 10 Upgrade TS......

[Settings]
Priority=Default
Properties=MyCustomProperty

[Default]
OSInstall=Y
SkipCapture=YES
SkipAdminPassword=YES
SkipProductKey=YES
SkipComputerBackup=YES
SkipBitLocker=YES
MandatoryApplications001={2dea25ac-9be0-406b-916d-b5d84ce62c4d}
WindowsUpgradeAdditionalOptions=/compat IgnoreWarning
SLShare=\\SERVER01.domain.local\Logs\%OSDComputername%
SLShareDynamicLogging=\\SERVER01.domain.local\Logs\DynLogs


CMTrace.exe - System Center 2012 R2 Configuration Manager Toolkit -
https://www.microsoft.com/en-us/download/details.aspx?id=50012


MDT log files video - 
https://keithga.wordpress.com/2014/10/24/video-mdt-2013-log-files-basics-bdd-log-and-smsts-log/

%OSDComputername%

In your Rules (cs.ini) you will need to add these two properties with the shared logs path.
SLShare=\\mdtserver\Logs <-- This copies all logs at the end of the deployment from the client to the Logs folder. These logs are broken down into stages of the deployment to find things easier.

SLShareDynamicLogging=\\mdtserver\Logs <-- his BBD.log gets created and logs the entire deployment from start to finish. This is a real time log file.

Comments