cowinr
12/5/2018 - 9:47 AM

PowerShell Parameters

# Limit to a set of values
Param (
    [ValidateSet("Chocolate", "Strawberry", "Vanilla")]
    [String]
    $flavor = Strawberry
)