1
0
mirror of https://github.com/fleschutz/PowerShell.git synced 2025-01-23 22:28:37 +01:00
PowerShell/Scripts/check-powershell.ps1
2022-12-02 08:41:01 +01:00

25 lines
686 B
PowerShell

<#
.SYNOPSIS
Query PowerShell details
.DESCRIPTION
This PowerShell script queries and lists details of PowerShell.
.EXAMPLE
PS> ./check-powershell
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz | License: CC0
#>
try {
$Version = $PSVersionTable.PSVersion
$Edition = $PSVersionTable.PSEdition
$NumModules = (Get-Module).Count
$NumCmdlets = (Get-Command -Command-Type cmdlet).Count
$NumAliases = (Get-Alias).Count
"✅ PowerShell $Version ($Edition edition) with $NumModules modules, $NumCmdlets cmdlets and $NumAliases aliases"
exit 0 # success
} catch {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}