2022-12-02 11:48:59 +01:00
|
|
|
|
<#
|
|
|
|
|
.SYNOPSIS
|
2023-01-06 11:40:42 +01:00
|
|
|
|
Query app details
|
2022-12-02 11:48:59 +01:00
|
|
|
|
.DESCRIPTION
|
2023-01-23 14:04:23 +01:00
|
|
|
|
This PowerShell script queries application details and lists it.
|
2022-12-02 11:48:59 +01:00
|
|
|
|
.EXAMPLE
|
|
|
|
|
PS> ./check-apps
|
|
|
|
|
.LINK
|
|
|
|
|
https://github.com/fleschutz/PowerShell
|
|
|
|
|
.NOTES
|
|
|
|
|
Author: Markus Fleschutz | License: CC0
|
|
|
|
|
#>
|
|
|
|
|
|
|
|
|
|
try {
|
2022-12-04 10:07:36 +01:00
|
|
|
|
if ($IsLinux) {
|
|
|
|
|
# TODO
|
|
|
|
|
} else {
|
2023-01-23 14:04:23 +01:00
|
|
|
|
Write-Progress "⏳ Querying installed applications..."
|
2022-12-28 18:21:43 +01:00
|
|
|
|
$Apps = Get-AppxPackage
|
2023-01-31 13:14:37 +01:00
|
|
|
|
$Status = "✅ $($Apps.Count) apps installed"
|
|
|
|
|
|
|
|
|
|
Write-Progress "⏳ Checking installed applications..."
|
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
|
|
|
|
|
2023-01-31 13:14:37 +01:00
|
|
|
|
Write-Progress "⏳ Querying application upgrades..."
|
2022-12-28 18:21:43 +01:00
|
|
|
|
$NumUpdates = (winget upgrade --include-unknown).Count - 5
|
2023-01-31 13:14:37 +01:00
|
|
|
|
Write-Progress -Completed "Querying finished."
|
|
|
|
|
Write-Host "$Status, $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
|
|
|
|
|
}
|