From fefb2c61e7dacf78827ba475612df29acf619eaa Mon Sep 17 00:00:00 2001 From: Upgrayedd Date: Sun, 26 Jan 2025 23:07:24 -0600 Subject: [PATCH] Add WinUpgrayeddUpdateAssistant.ps1 --- WinUpgrayeddUpdateAssistant.ps1 | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 WinUpgrayeddUpdateAssistant.ps1 diff --git a/WinUpgrayeddUpdateAssistant.ps1 b/WinUpgrayeddUpdateAssistant.ps1 new file mode 100644 index 0000000..37e29ed --- /dev/null +++ b/WinUpgrayeddUpdateAssistant.ps1 @@ -0,0 +1,17 @@ +#A better version lives here +#https://github.com/AveYo/MediaCreationTool.bat +#but this one is mine + + +#make our working directory if it ain't there +$programData = $env:PROGRAMDATA +$workDir = "$programData\UG\temp" +if(!(test-path -PathType container $workDir)) +{ + New-Item -ItemType Directory -Path $workDir +} + +#download the update Assistant +Start-BitsTransfer -Source "https://go.microsoft.com/fwlink/?linkid=2171764" -Destination $workDir\updateAssistant.exe + +