MDT 2013 offers an astounding 37,403 lines of code for free.

By | October 28, 2013
Share

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

Leave a Reply

Your email address will not be published.

*

This site uses Akismet to reduce spam. Learn how your comment data is processed.