Add check-powershell.ps1

This commit is contained in:
Markus Fleschutz
2022-12-01 09:50:58 +01:00
parent 546dbdfcaf
commit 0fe4d2f6c7
4 changed files with 27 additions and 4 deletions

View File

@ -0,0 +1,22 @@
<#
.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
"✅ PowerShell $Version ($Edition edition)"
exit 0 # success
} catch {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}