Added check-apps.ps1

This commit is contained in:
Markus Fleschutz
2022-12-02 11:48:59 +01:00
parent b03cb29ec8
commit 66fa70a2aa
2 changed files with 23 additions and 0 deletions

22
Scripts/check-apps.ps1 Normal file
View File

@ -0,0 +1,22 @@
<#
.SYNOPSIS
Query application details
.DESCRIPTION
This PowerShell script queries and lists application details.
.EXAMPLE
PS> ./check-apps
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz | License: CC0
#>
try {
$NumAppsInstalled = (Get-AppxPackage).Count
$NumUpdates = (winget upgrade).Count - 5
"$NumAppsInstalled apps installed, $NumUpdates updates available"
exit 0 # success
} catch {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}