GenCare

If you using Teams for PSTN Conferencing (Telephone Dial In), you have probably noticed that anyone that is not a member of your Office 365 tenant must be manually admitted from the Lobby by someone who is part of your company. Skype for Business meeting allow the meeting creator to turn this off for a specific meeting and to set the “bypass lobby” as a default feature. However this feature has not yet been added to the Teams client or the Outlook Desktop Client.

And worse yet if everyone is dialing in (member or not) the same issue applies. We have had customers reject PSTN Conferencing as usable because of this problem. However, there is a workaround finally. It requires using PowerShell and its all or nothing but we have bypassed the lobby here at General Networks so we can use Teams as our primary PSTN conferencing tool.

Below are the notes from our engineer that got this working.

If your not a General Networks client to do this for you email tssales@gennet.com and we will let you know the costs. Current clients can email or call the helpdesk.

I’ve updated our meeting policy so that when you scheduled a teams call, anonymous callers can dial in and will be joined to the meeting immediately (no lobby, no admin pin necessary). Here’s how to do it.

  1. Install the Skype for Business Online Connector Module. This module in PowerShell is used to update Meeting Policies in O365 https://www.microsoft.com/en-us/download/details.aspx?id=39366
  2. Restart your computer
  3. Open a PowerShell window in Administrator mode
  4. Run this command: Import-Module SkypeOnlineConnector
    1. If you have trouble running scripts due to your execution policy you’ll need to update your execution policy. See here for details: https:/go.microsoft.com/fwlink/?LinkID=135170
    2. If it asks you to start WinRM service say Yes
  5. Execute this command: $credential = Get-Credential
    1. Type in credentials of a O365 Tenant Admin (may only need rights to Teams but not sure)
  6. Execute this command: $session = New-CsOnlineSession -Credential $credential -Verbose
  7. Execute this command: Import-PSSession $session
  8. You can now execute commands to interact with the Meeting Policies. Execute this command to see a list of your meeting policies: Get-CsTeamsMeetingPolicy
  9. Find the policy you want to update (i.e. Global)
  10. Execute this command using the policy name in place of GLOBAL: Set-CsTeamsMeetingPolicy -Identity GLOBAL -AllowAnonymousUsersToStartMeeting 1 -AllowPSTNUsersToBypassLobby 1 -AutoAdmittedUsers “Everyone”
    1. This will allow phone users to bypass the lobby as well as allow them (anonymous users) to start the meeting.
    2. Additional settings on this command can be found here: https://docs.microsoft.com/en-us/powershell/module/skype/set-csteamsmeetingpolicy?view=skype-ps