winutil/functions/private/Update-WinUtilProgramWinget.ps1
2024-03-28 10:47:47 -05:00

21 lines
591 B
PowerShell

Function Update-WinUtilProgramWinget {
<#
.SYNOPSIS
This will update all programs using Winget
#>
[ScriptBlock]$wingetinstall = {
$host.ui.RawUI.WindowTitle = """Winget Install"""
Start-Transcript $ENV:TEMP\winget-update.log -Append
winget upgrade --all --accept-source-agreements --accept-package-agreements --scope=machine --silent
}
$global:WinGetInstall = Start-Process -Verb runas powershell -ArgumentList "-command invoke-command -scriptblock {$wingetinstall} -argumentlist '$($ProgramsToInstall -join ",")'" -PassThru
}