PowerShell/docs/list-updates.md
2025-05-12 22:04:02 +02:00

2.9 KiB

The list-updates.ps1 Script

This PowerShell script queries the latest available software updates for the local machine and lists it (for installation use 'install-updates.ps1').

Parameters

/Repos/PowerShell/scripts/list-updates.ps1 [<CommonParameters>]

[<CommonParameters>]
    This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, 
    WarningVariable, OutBuffer, PipelineVariable, and OutVariable.

Example

PS> ./list-updates.ps1
 Querying Microsoft Store...



Name               Id                    Version       Available
----------------------------------------------------------------
Git                Git.Git               2.43.0        2.44.0   
       ...

Notes

Author: Markus Fleschutz | License: CC0

https://github.com/fleschutz/PowerShell

Script Content

<#
.SYNOPSIS
	Lists software updates
.DESCRIPTION
	This PowerShell script queries the latest available software updates for the
	local machine and lists it (for installation use 'install-updates.ps1').
.EXAMPLE
	PS> ./list-updates.ps1
	⏳ Querying Microsoft Store...

	Name               Id                    Version       Available
	----------------------------------------------------------------
	Git                Git.Git               2.43.0        2.44.0   
        ...
.LINK
	https://github.com/fleschutz/PowerShell
.NOTES
	Author: Markus Fleschutz | License: CC0
#>

try {
	if ($IsLinux) {
		if (Get-Command apt -ErrorAction SilentlyContinue) {
			Write-Host "`n⏳ Querying APT package updates..." -foregroundColor green
			& sudo apt update
			& sudo apt list --upgradable
		}
		if (Get-Command snap -ErrorAction SilentlyContinue) {
			Write-Host "`n⏳ Querying Snap updates..." -foregroundColor green
			& sudo snap refresh --list
		}
	} elseif ($IsMacOS) {
		if (Get-Command brew -ErrorAction SilentlyContinue) {
			Write-Host "`n⏳ Querying Homebrew updates..." -foregroundColor green
			& brew outdated
		}
	} else {
		if (Get-Command winget -ErrorAction SilentlyContinue) {
			Write-Host "`n⏳ Querying Microsoft Store..." -foregroundColor green
			& winget upgrade --include-unknown --source=msstore

			Write-Host "`n⏳ Querying WinGet..." -foregroundColor green
			& winget upgrade --include-unknown --source=winget
		}
		if (Get-Command choco -ErrorAction SilentlyContinue) {
			Write-Host "`n⏳ Querying Chocolatey..." -foregroundColor green
			& choco outdated
		}
		if (Get-Command scoop -ErrorAction SilentlyContinue) {
			Write-Host "`n⏳ Querying Scoop..." -foregroundColor green
			& scoop status
		}
	}
	" "
	"💡 Execute 'install-updates.ps1' to install the listed updates."
	exit 0 # success
} catch {
	"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
	exit 1
}

(page generated by convert-ps2md.ps1 as of 05/12/2025 22:02:56)