Skip to content

Instantly share code, notes, and snippets.

@NielsGregers
Created January 24, 2021 16:28
Show Gist options
  • Save NielsGregers/a73d1f7c355c5b3e5020acc21f90e604 to your computer and use it in GitHub Desktop.
Save NielsGregers/a73d1f7c355c5b3e5020acc21f90e604 to your computer and use it in GitHub Desktop.
. "$PSScriptRoot\.hexatown.com.ps1" # Load the Hexatown framework
$hexatown = Start-Hexatown $myInvocation # Start the framework
$myTeams = List $hexatown my teams by displayName # Read the Teams of the delegate user sorted by name
foreach ($team in $myTeams ) # Repeat code for each team
{ # Start code block
Write-Host $team.displayName # Write the value of a team to the host
} # End code block
Stop-Hexatown $hexatown # Stop the framework
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment