Files
winutil/functions/private/Install-WinUtilWinget.ps1
Gabi 0cd971d992 Update Install-WinUtilWinget.ps1 (#4302)
* Update Install-WinUtilWinget.ps1

* Update Install-WinUtilWinget.ps1

* Update Install-WinUtilWinget.ps1

* Update Install-WinUtilWinget.ps1

* Update Install-WinUtilWinget.ps1
2026-04-07 12:50:05 -05:00

20 lines
479 B
PowerShell

function Install-WinUtilWinget {
<#
.SYNOPSIS
Installs WinGet if not already installed.
.DESCRIPTION
installs winGet if needed
#>
if ((Test-WinUtilPackageManager -winget) -eq "installed") {
return
}
Write-Host "WinGet is not installed. Installing now..." -ForegroundColor Red
Install-PackageProvider -Name NuGet -Force
Install-Module -Name Microsoft.WinGet.Client -Force
Repair-WinGetPackageManager -AllUsers
}