Skip to content

Instantly share code, notes, and snippets.

@artschwagerb
Forked from mgreenegit/WMF5Latest.ps1
Created February 15, 2018 15:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save artschwagerb/2c5c65c192567bd475f45a40c39fbb61 to your computer and use it in GitHub Desktop.
Save artschwagerb/2c5c65c192567bd475f45a40c39fbb61 to your computer and use it in GitHub Desktop.
Get latest WMF5 and quietly install, reboot suppressed
# Use shortcode to find latest TechNet download site
$confirmationPage = 'http://www.microsoft.com/en-us/download/' + $((invoke-webrequest 'http://aka.ms/wmf5latest' -UseBasicParsing).links | ? Class -eq 'mscom-link download-button dl' | % href)
# Parse confirmation page and look for URL to file
$directURL = (invoke-webrequest $confirmationPage -UseBasicParsing).Links | ? Class -eq 'mscom-link' | ? href -match 'Win8.1AndW2K12R2-KB3134758-x64.msu' | % href | select -first 1
# Download file to local
$download = invoke-webrequest $directURL -OutFile $env:Temp\wmf5latest.msu
# Install quietly with no reboot
if (test-path $env:Temp\wmf5latest.msu) {
start -wait $env:Temp\wmf5latest.msu -argumentlist '/quiet /norestart'
}
else { throw 'the update file is not available at the specified location' }
# Clean up
Remove-Item $env:Temp\wmf5latest.msu
# Assumption is that the next likely step will be DSC config, starting with xPendingReboot to finish install
<#
File names:
W2K12-KB3134759-x64.msu
Win7AndW2K8R2-KB3134760-x64.msu
Win7-KB3134760-x86.msu
Win8.1AndW2K12R2-KB3134758-x64.msu
Win8.1-KB3134758-x86.msu
#>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment