PowerShell/docs/check-apps.md

79 lines
2.0 KiB
Markdown
Raw Normal View History

2024-01-25 13:37:12 +01:00
Script: *check-apps.ps1*
========================
2022-12-04 10:40:18 +01:00
2023-09-01 17:53:03 +02:00
This PowerShell script queries the installed applications and prints it.
2022-12-04 10:40:18 +01:00
2023-07-29 10:04:38 +02:00
Parameters
----------
2022-12-04 10:40:18 +01:00
```powershell
2023-07-29 10:15:44 +02:00
PS> ./check-apps.ps1 [<CommonParameters>]
2022-12-04 10:40:18 +01:00
[<CommonParameters>]
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
```
2023-07-29 10:04:38 +02:00
Example
-------
2022-12-04 10:40:18 +01:00
```powershell
2023-08-06 21:36:33 +02:00
PS> ./check-apps.ps1
2023-09-01 17:53:03 +02:00
✅ 119 Windows apps installed, 11 upgrades available
2022-12-04 10:40:18 +01:00
```
2023-07-29 10:04:38 +02:00
Notes
-----
2022-12-04 10:40:18 +01:00
Author: Markus Fleschutz | License: CC0
2023-07-29 10:04:38 +02:00
Related Links
-------------
2022-12-04 10:40:18 +01:00
https://github.com/fleschutz/PowerShell
2023-07-29 10:04:38 +02:00
Script Content
--------------
2022-12-04 10:40:18 +01:00
```powershell
<#
.SYNOPSIS
2023-05-26 12:20:18 +02:00
Query the app status
2022-12-04 10:40:18 +01:00
.DESCRIPTION
2023-09-01 17:53:03 +02:00
This PowerShell script queries the installed applications and prints it.
2022-12-04 10:40:18 +01:00
.EXAMPLE
2023-08-06 21:36:33 +02:00
PS> ./check-apps.ps1
2023-09-01 17:53:03 +02:00
✅ 119 Windows apps installed, 11 upgrades available
2022-12-04 10:40:18 +01:00
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz | License: CC0
#>
try {
if ($IsLinux) {
2023-12-07 20:24:45 +01:00
Write-Progress "Querying installed applications..."
2023-09-01 17:53:03 +02:00
$numPkgs = (apt list --installed 2>/dev/null).Count
$numSnaps = (snap list).Count - 1
Write-Progress -Completed "."
Write-Host "✅ $numPkgs Debian packages, $numSnaps snaps installed"
2022-12-04 10:40:18 +01:00
} else {
2023-12-07 20:24:45 +01:00
Write-Progress "Querying installed applications..."
2023-05-26 12:20:18 +02:00
$Apps = Get-AppxPackage
2023-09-01 17:53:03 +02:00
Write-Progress -Completed "."
Write-Host "✅ $($Apps.Count) Windows apps installed, " -noNewline
2023-05-26 12:20:18 +02:00
[int]$NumNonOk = 0
foreach($App in $Apps) { if ($App.Status -ne "Ok") { $NumNonOk++ } }
if ($NumNonOk -gt 0) { $Status += ", $NumNonOk non-ok" }
[int]$NumErrors = (Get-AppxLastError)
if ($NumErrors -gt 0) { $Status += ", $NumErrors errors" }
$NumUpdates = (winget upgrade --include-unknown).Count - 5
2023-09-01 17:53:03 +02:00
Write-Host "$NumUpdates upgrades available"
2022-12-04 10:40:18 +01:00
}
exit 0 # success
} catch {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
```
2024-03-27 17:36:59 +01:00
*(generated by convert-ps2md.ps1 using the comment-based help of check-apps.ps1 as of 03/27/2024 17:36:24)*