Quantcast
Channel: Scripting Blog
Viewing all articles
Browse latest Browse all 2129

PowerTip: Identify if you are running on PowerShell Core

$
0
0

Summary: Pulling up the properties of $PSVersionTable to identify your PowerShell edition

A picture containing scissors

Description automatically generated

Hey, Doctor Scripto! I want to write my modules and scripts to be more portable. How can I tell if I am executing on PowerShell Core?

Just use the $PSVersionTable object and examine the PSEdition value. If it returns ‘Core’ you are running on PowerShell core.

$PSVersionTable.PSEdition

PowerShell, Doctor Scripto, PowerTip, Sean Kearney

 

The post PowerTip: Identify if you are running on PowerShell Core appeared first on Scripting Blog.


Viewing all articles
Browse latest Browse all 2129

Trending Articles