From 8fa1332ff0c0c0f68053916557cafc6d2861dbfd Mon Sep 17 00:00:00 2001 From: Jeffrey <9938813+Raphire@users.noreply.github.com> Date: Tue, 14 Jul 2026 21:18:39 +0200 Subject: [PATCH] Update download messages for development and stable versions of Win11Debloat --- Scripts/Get.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Scripts/Get.ps1 b/Scripts/Get.ps1 index 0688dd3..22ef8e2 100644 --- a/Scripts/Get.ps1 +++ b/Scripts/Get.ps1 @@ -121,13 +121,13 @@ $tempRootPath = $env:TEMP $tempWorkPath = Join-Path $tempRootPath 'Win11Debloat' $tempArchivePath = Join-Path $tempRootPath 'win11debloat.zip' -Write-Output "> Downloading Win11Debloat..." - # Download Win11Debloat from GitHub as a zip archive. try { if ($Dev) { + Write-Output "> Downloading development version of Win11Debloat..." $sourceUri = "https://github.com/Raphire/Win11Debloat/archive/refs/heads/master.zip" } else { + Write-Output "> Downloading Win11Debloat..." $sourceUri = (Invoke-RestMethod https://api.github.com/repos/Raphire/Win11Debloat/releases/latest).zipball_url } Invoke-RestMethod $sourceUri -OutFile $tempArchivePath