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-08-12 09:13:17 +02:00
|
|
|
|
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
|
2023-08-12 09:13:17 +02:00
|
|
|
|
✅ 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 {
|
2022-12-04 10:07:36 +01:00
|
|
|
|
if ($IsLinux) {
|
2023-07-05 15:10:01 +02:00
|
|
|
|
$NumSnaps = (snap list).Count - 1
|
|
|
|
|
Write-Host "✅ $($NumSnaps) snaps installed"
|
2022-12-04 10:07:36 +01:00
|
|
|
|
} else {
|
2023-08-12 09:13:17 +02:00
|
|
|
|
Write-Progress "⏳ Querying installed applications..."
|
2022-12-28 18:21:43 +01:00
|
|
|
|
$Apps = Get-AppxPackage
|
2023-08-12 09:13:17 +02:00
|
|
|
|
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
|
2023-08-12 09:13:17 +02:00
|
|
|
|
Write-Host "$NumUpdates upgrades available"
|
2022-12-04 10:07:36 +01:00
|
|
|
|
}
|
2022-12-02 11:48:59 +01:00
|
|
|
|
exit 0 # success
|
|
|
|
|
} catch {
|
|
|
|
|
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
|
|
|
|
exit 1
|
2023-07-05 15:10:01 +02:00
|
|
|
|
}
|