PowerShell/Scripts/check-apps.ps1

39 lines
1.1 KiB
PowerShell
Raw Normal View History

2022-12-02 11:48:59 +01:00
<#
.SYNOPSIS
2023-04-11 10:48:59 +02:00
Query the app status
2022-12-02 11:48:59 +01:00
.DESCRIPTION
This PowerShell script queries the installed applications and prints it.
2022-12-02 11:48:59 +01:00
.EXAMPLE
2023-08-06 21:35:36 +02:00
PS> ./check-apps.ps1
119 Windows apps installed, 11 upgrades available
2022-12-02 11:48:59 +01:00
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz | License: CC0
#>
try {
if ($IsLinux) {
$NumSnaps = (snap list).Count - 1
Write-Host "$($NumSnaps) snaps installed"
} else {
Write-Progress "⏳ Querying installed applications..."
2022-12-28 18:21:43 +01:00
$Apps = Get-AppxPackage
Write-Progress -Completed "."
Write-Host "$($Apps.Count) Windows apps installed, " -noNewline
2023-01-31 13:14:37 +01:00
2023-01-06 11:40:42 +01:00
[int]$NumNonOk = 0
foreach($App in $Apps) { if ($App.Status -ne "Ok") { $NumNonOk++ } }
2023-01-31 13:14:37 +01:00
if ($NumNonOk -gt 0) { $Status += ", $NumNonOk non-ok" }
[int]$NumErrors = (Get-AppxLastError)
if ($NumErrors -gt 0) { $Status += ", $NumErrors errors" }
2022-12-04 19:07:18 +01:00
2022-12-28 18:21:43 +01:00
$NumUpdates = (winget upgrade --include-unknown).Count - 5
Write-Host "$NumUpdates upgrades available"
}
2022-12-02 11:48:59 +01:00
exit 0 # success
} catch {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}