I took a couple of minutes out Today to pull the amount of code is offered for free by implementing MDT 2013 from Micosoft. Here is the powershell I wrote up for querying up the number:
Get-ChildItem -Path C:\HydrationCM2012R2\DS\Scripts\ -Recurse | ` Where-Object {$_.Extension -eq ".WSF" -or $_.Extension -eq ".VBS"} | ` foreach{(Get-Content $_.FullName).Count} | Measure-Object -Sum
Results:
Count : 95
Average :
Sum : 37403
Maximum :
Minimum :
Property :
/Brian G