PowerShell/Scripts/check-apps.ps1

37 lines
990 B
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
2023-04-11 10:48:59 +02:00
This PowerShell script queries the application status and prints it.
2022-12-02 11:48:59 +01:00
.EXAMPLE
PS> ./check-apps
2023-04-11 10:48:59 +02:00
119 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) {
# TODO
} else {
2023-04-11 10:48:59 +02:00
Write-Progress "⏳ Querying installed apps and updates..."
2022-12-28 18:21:43 +01:00
$Apps = Get-AppxPackage
2023-01-31 13:14:37 +01:00
$Status = "$($Apps.Count) apps installed"
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
2023-03-02 14:03:26 +01:00
Write-Progress -Completed "."
2023-01-31 13:14:37 +01:00
Write-Host "$Status, $NumUpdates upgrades available"
}
2022-12-02 11:48:59 +01:00
exit 0 # success
} catch {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}