Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add new Meeting Policy setting - CaptchaVerificationForMeetingJoin #11927

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions teams/teams-ps/teams/New-CsTeamsMeetingPolicy.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ New-CsTeamsMeetingPolicy [-Identity] <XdsIdentity>
[-AutoAdmittedUsers <String>]
[-AutomaticallyStartCopilot <String>]
[-BlockedAnonymousJoinClientTypes <List>]
[-CaptchaVerificationForMeetingJoin <String>]
[-Confirm]
[-ContentSharingInExternalMeetings <String>]
[-Copilot <String>]
Expand Down Expand Up @@ -731,6 +732,26 @@ Accept pipeline input: False
Accept wildcard characters: False
```

### -CaptchaVerificationForMeetingJoin
Check that everyone joining from outside the company is a real person. This will prevent unwanted guests.

Possible values are:

- **NotRequired**, Captcha not required
- **AnonymousUsersAndUntrustedOrganizations**, Anonymous users and people from untrusted organizations

```yaml
Type: String
Parameter Sets: (All)
Aliases:

Required: False
Position: Named
Default value: NotRequired
Accept pipeline input: False
Accept wildcard characters: False
```

### -Confirm
Prompts you for confirmation before running the cmdlet.

Expand Down
21 changes: 21 additions & 0 deletions teams/teams-ps/teams/Set-CsTeamsMeetingPolicy.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ Set-CsTeamsMeetingPolicy [[-Identity] <XdsIdentity>]
[-AutoAdmittedUsers <String>]
[-AutomaticallyStartCopilot <String>]
[-BlockedAnonymousJoinClientTypes <List>]
[-CaptchaVerificationForMeetingJoin <String>]
[-ChannelRecordingDownload <String>]
[-Confirm]
[-ConnectToMeetingControls <String>]
Expand Down Expand Up @@ -766,6 +767,26 @@ Accept pipeline input: False
Accept wildcard characters: False
```

### -CaptchaVerificationForMeetingJoin
Check that everyone joining from outside the company is a real person. This will prevent unwanted guests.

Possible values:

- **NotRequired**, Captcha not required
- **AnonymousUsersAndUntrustedOrganizations**, Anonymous users and people from untrusted organizations

```yaml
Type: String
Parameter Sets: (All)
Aliases:

Required: False
Position: Named
Default value: NotRequired
Accept pipeline input: False
Accept wildcard characters: False
```

### -ChannelRecordingDownload
Controls how channel meeting recordings are saved, permissioned, and who can download them.

Expand Down