Functions/Get-PSConfEUSpeakersSession.ps1
Function Get-PSConfEUSpeakersSession { [cmdletbinding()] param( [parameter(Mandatory = $True, Position = 1)] [ValidateNotNullorEmpty()] [string]$SpeakerName ) $AllSessions = Get-PSConfEUSession $AllSessions | Where-Object { $_.Speaker -eq $SpeakerName } } |