mirror of
https://github.com/ChrisTitusTech/winutil.git
synced 2024-11-14 14:45:52 -06: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
|
||
|
|
||
|
}
|