Skip to content

Instantly share code, notes, and snippets.

View sean-mcardle's full-sized avatar

Sean McArdle sean-mcardle

  • State of Oregon
View GitHub Profile
function Out-SelectorMenu {
param (
[Parameter(ValueFromPipeline=$true)]
$InputObject,
[Parameter(Position=0)]
$Title
)
begin {
$_items = @()
}
################################################################################
## Helper Functions ##
################################################################################
function DecodeJwt {
param ($encodedToken)