From 1cbe1215fb8572ba002e0fab0750006a44145195 Mon Sep 17 00:00:00 2001 From: dyoder Date: Fri, 21 May 2021 12:19:34 -0400 Subject: [PATCH] update to 20H2 --- Start-Windows10UpdateAssistant.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Start-Windows10UpdateAssistant.ps1 b/Start-Windows10UpdateAssistant.ps1 index adba438..77ed643 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 2004 - If ( IsWindowsBuild -lt 19041 ) { + If ( IsWindowsBuild -lt 19042 ) { ## Set the directory where the Windows Update Assistant will be downloaded to $DOWNLOADS = $Env:TEMP ## URL to the 2004 version of the Windows Update Assistant - $URL = 'https://download.microsoft.com/download/8/3/c/83c39dca-2d27-4c24-b98b-0a4d6d921c80/Windows10Upgrade9252.exe' + $URL = 'https://download.microsoft.com/download/3/0/1/301147e7-e3d3-467e-a9eb-003a72840887/Windows10Upgrade9252.exe' ## Uninstall previous Windows 10 Update Assistant If ( Test-Path "${Env:SystemDrive}\Windows10Upgrade\Windows10UpgraderApp.exe" )