Quantcast
Channel: Hey, Scripting Guy! Blog
Viewing all articles
Browse latest Browse all 3333

PowerTip: Find Numeric Value of Enum in PowerShell

$
0
0

Summary: Learn how to easily find the numeric value of an enum in Windows PowerShell.

Hey, Scripting Guy! Question How can I use Windows PowerShell to easily find the numeric value of an enumeration?

Hey, Scripting Guy! Answer Use square brackets to call the enum, call the enumeration property as a static property, and reference3
           the value__ property. Here is an example using the [fruit] enum created in yesterday’s post, 
           New PowerShell 5 Feature: Enumerations:

[fruit]::apple.value__


Viewing all articles
Browse latest Browse all 3333

Trending Articles