From dd50b70bf9c0f8e63a352620aba17748c7313ce6 Mon Sep 17 00:00:00 2001 From: ChrisTitusTech Date: Thu, 21 Mar 2024 23:02:56 +0000 Subject: [PATCH] Compile Winutil --- winutil.ps1 | 20 +++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) diff --git a/winutil.ps1 b/winutil.ps1 index 9259a79a..99c1642a 100644 --- a/winutil.ps1 +++ b/winutil.ps1 @@ -2460,11 +2460,17 @@ function Test-WinUtilPackageManager { # Install Winget if not detected $wingetExists = Get-Command -Name winget -ErrorAction SilentlyContinue if ($wingetExists) { - $wingetVersion = [System.Version]::Parse((winget --version).Trim('v')) + $wingetversionfull = (winget --version) + $wingetversiontrim = $wingetversionfull.Trim('v') + if ($wingetversiontrim.EndsWith("-preview")) { + $wingetversiontrim = $wingetversiontrim.Trim('-preview') + $wingetpreview = $true + } + $wingetVersion = [System.Version]::Parse($wingetversiontrim) $minimumWingetVersion = [System.Version]::new(1,2,10691) # Win 11 23H2 comes with bad winget v1.2.10691 $wingetOutdated = $wingetVersion -le $minimumWingetVersion - Write-Host "Winget v$wingetVersion" + Write-Host "Winget $wingetVersionfull" } if (!$wingetExists -or $wingetOutdated) { @@ -2477,13 +2483,17 @@ function Test-WinUtilPackageManager { if ($winget) { if ($wingetExists -and !$wingetOutdated) { - Write-Host "- Winget up-to-date" + if (!$wingetpreview) { + Write-Host "- Winget up-to-date" + } else { + Write-Host "- Winget preview version detected. Unexptected problems may occur" -ForegroundColor Yellow + } return $true } } - if($choco){ - if ((Get-Command -Name choco -ErrorAction Ignore) -and ($chocoVersion = (Get-Item "$env:ChocolateyInstall\choco.exe" -ErrorAction Ignore).VersionInfo.ProductVersion)){ + if ($choco) { + if ((Get-Command -Name choco -ErrorAction Ignore) -and ($chocoVersion = (Get-Item "$env:ChocolateyInstall\choco.exe" -ErrorAction Ignore).VersionInfo.ProductVersion)) { Write-Host "Chocolatey v$chocoVersion" return $true }