Last active
March 16, 2025 19:39
-
-
Save The-Running-Dev/4bb7587cd5b7471891d62a0fab97b7b7 to your computer and use it in GitHub Desktop.
A PowerShell Script to Upgrade All Installed Software
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
param ( | |
[switch] $verbose | |
) | |
# Function to log messages | |
function Log-Message { | |
param ( | |
[string] $message, | |
[string] $type = 'INFO' | |
) | |
$timestamp = Get-Date -Format 'yyyy.MM.dd HH:mm:ss' | |
$logMessage = "$timestamp [$type] $message" | |
Write-Output $logMessage | |
Add-Content -Path $logFile -Value $logMessage | |
} | |
$logBaseName = (Get-Item $MyInvocation.MyCommand.Path).BaseName | |
$logsPath = Join-Path $PSScriptRoot $logBaseName | |
$logFile = Join-Path $logsPath "$logBaseName.log" | |
if (-not (Test-Path $logsPath)) { | |
New-Item -ItemType Directory -Path $logsPath | Out-Null | |
} | |
# Ensure Microsoft.WinGet.Client module is installed | |
if (-not (Get-Module -Name Microsoft.WinGet.Client -ListAvailable)) { | |
Log-Message "Installing Microsoft.WinGet.Client Module..." | |
Install-Module -Name Microsoft.WinGet.Client -Scope CurrentUser -Force -AllowClobber | |
} | |
Import-Module Microsoft.WinGet.Client | |
try { | |
Log-Message "Checking for Available Updates..." | |
$upgradablePackages = Get-WinGetPackage -UpgradeAvailable | |
if ($upgradablePackages.Count -eq 0) { | |
Log-Message "No Updates Available..." | |
exit 0 | |
} | |
foreach ($package in $upgradablePackages) { | |
try { | |
Log-Message "New Version Found: $($package.Id) ($($package.AvailableVersion))" | |
$installParams = @{ | |
Id = $package.Id | |
AcceptPackageAgreements = $true | |
} | |
if (-not $verbose) { | |
$installParams["Silent"] = $true | |
} | |
$logOutput = Join-Path $logsPath "$($package.Id).log" | |
$logError = Join-Path $logsPath "$($package.Id)-error.log" | |
Start-Process -FilePath "powershell" ` | |
-ArgumentList "-Command Install-WinGetPackage @installParams" ` | |
-Wait ` | |
-NoNewWindow ` | |
-RedirectStandardOutput $logOutput ` | |
-RedirectStandardError $logError | |
Log-Message "Package Upgraded: $($package.Id)" | |
} catch { | |
Log-Message "Upgrade Failed for $($package.Id): $($_.Exception.Message)" "ERROR" | |
} | |
} | |
} catch { | |
Log-Message "WinGet Update Check Failed: $($_.Exception.Message)" "ERROR" | |
exit 1 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment