mirror of
https://github.com/ChrisTitusTech/winutil.git
synced 2025-12-22 20:25:30 +00:00
13 lines
301 B
PowerShell
13 lines
301 B
PowerShell
|
|
function Invoke-WPFFixesWinget {
|
||
|
|
|
||
|
|
<#
|
||
|
|
|
||
|
|
.SYNOPSIS
|
||
|
|
Fixes Winget by running choco install winget
|
||
|
|
.DESCRIPTION
|
||
|
|
BravoNorris for the fantastic idea of a button to reinstall winget
|
||
|
|
#>
|
||
|
|
|
||
|
|
Start-Process -FilePath "choco" -ArgumentList "install winget -y" -NoNewWindow -Wait
|
||
|
|
|
||
|
|
}
|