Create meeting configuration settings in Skype for Business Server

Summary: Learn how to create meeting configuration settings in Skype for Business Server.

You can create meeting configuration settings by using Skype for Business Server Control Panel or by using Skype for Business Server Management Shell.

Create meeting configuration settings by using Skype for Business Server Control Panel

  1. From a user account that is assigned to the CsUserAdministrator role or the CsAdministrator role, log on to any computer in your internal deployment.
  2. Open Skype for Business Server Control Panel.
  3. In the left navigation bar, click Conferencing, and then click Meeting Configuration.
  4. On the Meeting Configuration page, click New, and then do one of the following:
  5. To route participants who dial in from the public switched telephone network (PSTN) through the lobby, clear the PSTN callers bypass lobby check box. By default, participants dialing in from the PSTN go directly to the meeting.
  6. To configure who can be a presenter in the meeting, in Designate as presenter, do one of the following:
  7. To have the organizer select a conference type when scheduling a meeting, clear the Assigned conference type by default check box. By default, the conference type is automatically assigned.
  8. To prevent anonymous (unauthenticated) users from being automatically admitted, clear the Admit anonymous users by default check box. By default, anonymous users are automatically admitted to meetings.
  9. To customize the meeting invite that is sent out to participants, do the following. Note that the maximum length for URLs and custom footer text is 1KB. Except for Help URL, if you do not specify a value for the customizations, they will not be included in the meeting. If you do not include a custom help URL, the default help URL for Skype for Business will be displayed in the invite.
  10. Click Commit.

Create meeting configuration settings by using Skype for Business Server Management Shell

To create meeting configuration settings, use the New-CsMeetingConfiguration cmdlet.

The following command creates a new set of meeting configuration settings for the Redmond site:

New-CsMeetingConfiguration -Identity "site:Redmond" 

Because no parameters (other than the mandatory Identity parameter) were specified in the preceding command, the new meeting configuration settings will use the default values for all its properties.

To create settings that use different property values, simply include the appropriate parameter and parameter value. For example, to create a collection of meeting configuration settings that, by default, admit everyone to a meeting as a presenter use a command like this:

New-CsMeetingConfiguration -Identity "site:Redmond" -DesignateAsPresenter "Everyone" 

Multiple property values can be set by including multiple parameters. For example, the following command admits everyone to a meeting as a presenter and also forces PSTN users to wait in the lobby until they are formally admitted to the meeting:

New-CsMeetingConfiguration -Identity "site:Redmond" -DesignateAsPresenter "Everyone" -PSTNUCallersBypassLobby $True 

For more information, including a complete list of parameters, see New-CsMeetingConfiguration.