Forum Discussion
adikat2500
May 28, 2021Copper Contributor
Webinar not allowing register everyone?
I am not able to choose 'register everyone' for a webinar. Why this is not standard when all the videos were showing that I dont know. Can someone explain how to allow this in a way a layperson can u...
LinusCansby
May 28, 2021MVP
Hi,
The command would be:
Set-CsTeamsMeetingPolicy -AllowMeetingRegistration $true
Make sure you are running with an updated Teams PowerShell module, run to update:
Update-Module MicrosoftTeams
The command would be:
Set-CsTeamsMeetingPolicy -AllowMeetingRegistration $true
Make sure you are running with an updated Teams PowerShell module, run to update:
Update-Module MicrosoftTeams
adikat2500
May 28, 2021Copper Contributor
Thanks for the reply.
Again as a layperson essentially I would go into Powershell (Im assuming open as administrator) and then where I can type I would simply copy and paste what string or code is provided yes?
Again as a layperson essentially I would go into Powershell (Im assuming open as administrator) and then where I can type I would simply copy and paste what string or code is provided yes?
- adikat2500May 29, 2021Copper ContributorIt seems I was able to update the Teams module but when I tried the second string it gave me this
Set-CsTeamsMeetingPolicy : The 'Set-CsTeamsMeetingPolicy' command was found in the module 'MicrosoftTeams', but the
module could not be loaded. For more information, run 'Import-Module MicrosoftTeams'.
At line:1 char:1
+ Set-CsTeamsMeetingPolicy -AllowMeetingRegistration $true
+ ~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : ObjectNotFound: (Set-CsTeamsMeetingPolicy:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CouldNotAutoloadMatchingModule
Any thoughts?- LinusCansbyMay 30, 2021MVPIf you check the version of MicrosoftTeams powershell module do you have version 2.3.1?
Get-InstalledModule MicrosoftTeams
Also try to uninstall
Uninstall-Module MicrosoftTeams
Then install
Install-Module MicrosoftTeams- adikat2500May 30, 2021Copper ContributorThanks for replying appreciate it. I checked and yes the version is 2.3.1. I did the uninstall and install and then tried to do the
Set-CsTeamsMeetingPolicy -AllowMeetingRegistration $true
but I got the same message as above.