Skip to content

Instantly share code, notes, and snippets.

@ryan-leap
Created August 20, 2020 23:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ryan-leap/f528f4ed2268a79335f60f40af99d4bd to your computer and use it in GitHub Desktop.
Save ryan-leap/f528f4ed2268a79335f60f40af99d4bd to your computer and use it in GitHub Desktop.
function Show-AutoComplete {
[CmdletBinding()]
param (
[ValidateSet('Apple','Orange','Banana','Kiwi','Strawberry')]
[string] $Fruit = 'Apple'
)
Write-Host "The chosen value is [$Fruit]"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment