Skip to content

Instantly share code, notes, and snippets.

@bozhink
Created February 17, 2017 20:33
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 bozhink/c083e856900091fa3ca1654a804b4ada to your computer and use it in GitHub Desktop.
Save bozhink/c083e856900091fa3ca1654a804b4ada to your computer and use it in GitHub Desktop.
PowerShell: functions with code completion
<#
Import-Module *.psm1
#>
function Select-Color
{
param
(
[System.ConsoleColor]
$Color
)
"You selected: $Color"
}
function Select-City
{
param
(
[ValidateSet('New York','Redmond','Hanover','Tokyo')]
$City
)
"You selected: $City"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment