From 5c7e3c4708fc2f6b152fd127cb7f453998a86d46 Mon Sep 17 00:00:00 2001 From: David Yoder Date: Sun, 13 Feb 2022 12:54:26 -0500 Subject: [PATCH] update to 21H2 --- Start-Windows10UpdateAssistant.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Start-Windows10UpdateAssistant.ps1 b/Start-Windows10UpdateAssistant.ps1 index 2d524ad..5489be3 100644 --- a/Start-Windows10UpdateAssistant.ps1 +++ b/Start-Windows10UpdateAssistant.ps1 @@ -2,13 +2,13 @@ If ( IsWindowsVersion -ge "10.0" ) { ## Make sure the endpoint isn't already running the version we're installing - If ( IsWindowsBuild -lt 19043 ) { + If ( IsWindowsBuild -lt 19044 ) { ## Set the directory where the Windows Update Assistant will be downloaded to $DOWNLOADS = $Env:TEMP ## URL to the Windows Update Assistant - $URL = 'https://download.microsoft.com/download/3/0/1/301147e7-e3d3-467e-a9eb-003a72840887/Windows10Upgrade9252.exe' + $URL = 'https://download.microsoft.com/download/f/1/9/f19ea9d5-1b5f-4a4d-9f50-04cbf63dc9c6/Windows10Upgrade9252.exe' ## Uninstall previous Windows 10 Update Assistant If ( Test-Path "${Env:SystemDrive}\Windows10Upgrade\Windows10UpgraderApp.exe" )