mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-15 20:44:17 +01:00
22 lines
493 B
PowerShell
22 lines
493 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
|
|||
|
"✅ PowerShell $Version ($Edition edition)"
|
|||
|
exit 0 # success
|
|||
|
} catch {
|
|||
|
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
|||
|
exit 1
|
|||
|
}
|