Last active
December 6, 2018 08:20
-
-
Save OSDeploy/8f4abe4f1ac5e1033041f4747bad8210 to your computer and use it in GitHub Desktop.
18.12.6 1809 Servicing Stack and Cumulative Update
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Paste this in PowerShell to add the new Servicing Stacks and Cumulative Updates | |
#Servicing Stacks | |
#https://portal.msrc.microsoft.com/en-us/security-guidance/advisory/ADV990001 | |
#https://support.microsoft.com/en-us/help/4470788/servicing-stack-update-for-windows-10 | |
New-OSBUpdate -Category Servicing -KBNumber 4470788 -OS "Windows 10" -OSArch x64 -OSBuild 1809 -ReleaseDay 04 -ReleaseMonth 12 -ReleaseYear 2018 -URL http://download.windowsupdate.com/d/msdownload/update/software/secu/2018/11/windows10.0-kb4470788-x64_76f112f2b02b1716cdc0cab6c40f73764759cb0d.msu | |
New-OSBUpdate -Category Servicing -KBNumber 4470788 -OS "Windows 10" -OSArch x86 -OSBuild 1809 -ReleaseDay 04 -ReleaseMonth 12 -ReleaseYear 2018 -URL http://download.windowsupdate.com/c/msdownload/update/software/secu/2018/11/windows10.0-kb4470788-x86_4073458a480724d1f027856e79c09b82553c6c7f.msu | |
New-OSBUpdate -Category Servicing -KBNumber 4470788 -OS "Windows Server 2019" -OSArch x64 -OSBuild 1809 -ReleaseDay 04 -ReleaseMonth 12 -ReleaseYear 2018 -URL http://download.windowsupdate.com/d/msdownload/update/software/secu/2018/11/windows10.0-kb4470788-x64_76f112f2b02b1716cdc0cab6c40f73764759cb0d.msu | |
#Cumulative Update | |
#https://support.microsoft.com/en-us/help/4469342 | |
New-OSBUpdate -Category Cumulative -KBNumber 4469342 -OS "Windows 10" -OSArch x64 -OSBuild 1809 -ReleaseDay 04 -ReleaseMonth 12 -ReleaseYear 2018 -URL http://download.windowsupdate.com/d/msdownload/update/software/updt/2018/12/windows10.0-kb4469342-x64_7290815610ac4c3d657eb5ed6e4e92421fa8c29a.msu | |
New-OSBUpdate -Category Cumulative -KBNumber 4469342 -OS "Windows 10" -OSArch x86 -OSBuild 1809 -ReleaseDay 04 -ReleaseMonth 12 -ReleaseYear 2018 -URL http://download.windowsupdate.com/d/msdownload/update/software/updt/2018/12/windows10.0-kb4469342-x86_e8cdc61bbd4aa4a7a768b1c863a5118fc6f968af.msu | |
New-OSBUpdate -Category Cumulative -KBNumber 4469342 -OS "Windows Server 2019" -OSArch x64 -OSBuild 1809 -ReleaseDay 04 -ReleaseMonth 12 -ReleaseYear 2018 -URL http://download.windowsupdate.com/d/msdownload/update/software/updt/2018/12/windows10.0-kb4469342-x64_7290815610ac4c3d657eb5ed6e4e92421fa8c29a.msu |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment