From d6653c4554f16339e952d553f6adb226b769a2ee Mon Sep 17 00:00:00 2001 From: ek-dyoder Date: Wed, 24 Sep 2025 14:34:36 -0400 Subject: [PATCH] minor wording change --- Start-UpgradeToWindows11.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Start-UpgradeToWindows11.ps1 b/Start-UpgradeToWindows11.ps1 index b9b4aae..0db6c96 100644 --- a/Start-UpgradeToWindows11.ps1 +++ b/Start-UpgradeToWindows11.ps1 @@ -39,7 +39,7 @@ Try { $SystemDrive = $Env:SystemDrive.TrimEnd('\') If ( (Get-CimInstance -ClassName Win32_Volume -Filter "DriveLetter = '$SystemDrive'" -ErrorAction Stop).FreeSpace -lt 64GB ) { Write-Output "This endpoint does not have at least 64GB of storage on the system drive" ; Exit 1 } - Else { Write-Output "This endpoint has at least 64GB of storage on the system drive" } + Else { Write-Output "This endpoint has at least 64GB of free space on the system drive" } } Catch { Write-Error "The free space on the system drive could not be determined`n"+$_.Exception.Message ; Exit 1 }