Functions/Get-PSConfEUSpeaker.ps1

Function Get-PSConfEUSpeaker {
    [cmdletbinding()]
    param()
    $AllSessions = Get-PSConfEUSession
    $AllSessions | Select-Object Speaker -Unique
}