Skip to content

Instantly share code, notes, and snippets.

View norsemangrey's full-sized avatar

norsemangrey

  • Norway
  • 09:21 (UTC +02:00)
View GitHub Profile
@alkampfergit
alkampfergit / winget-upgrade.ps1
Last active December 8, 2024 12:57
Winget upgrade output parsed into a real Powershell Object
class Software {
[string]$Name
[string]$Id
[string]$Version
[string]$AvailableVersion
}
[Console]::OutputEncoding = [System.Text.Encoding]::UTF8
$upgradeResult = winget upgrade | Out-String