Download Windows Security Updates for MDT (packages) offline deployment

Deploy your MDT image Install Microsoft Baseline Security Analyzer (MBSA) Scan MBSA saves the result under the current user profile directory – %USERPROFILE%\SecurityScans Powershell Script to download the missing updates [code language=”powershell”] [xml] $MBSAResult = Get-Content ‘.\SecurityScans\WORKGROUP – I3-PC (10-11-2015 8-03 PM).mbsa’ $MBSAResult.SelectNodes("//UpdateData") | ? { $_.IsInstalled -eq "false" } | % { $URL = …

MDT CustomSettings.ini

Automatically Set the TimeZone based on DefaultGateway [Settings] Priority=DefaultGateway, Default [Default] OSInstall=YES SkipTimeZone=YES [DefaultGateway] 192.168.0.1=HOUSTON 11.1.1.11=REDMOND 172.28.20.1=REDMOND 10.20.30.254=WASHINGTON [REDMOND] TimeZoneName=Pacific Time Zone [HOUSTON] TimeZoneName=Central Time Zone [WASHINGTON] TimeZoneName=Eastern Time Zone This is also be extended a step further to install applications based on location/Gateway. Applications001={1D7DF331-47B7-472C-87B3-442597EC2F7D} Applications002={9d2b8999-5e4d-4f3d-bb05-edaaf4fe5628} Automatically Set Computer Name Based on the MACAddress [Settings] …

WordPress Appliance - Powered by TurnKey Linux