nerdexam
Microsoft

MS-720 · Question #140

Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might…

The correct answer is B. No. Option B is correct because setting -MediaBitRateKb to 1 does not specifically prevent video - it severely restricts bandwidth for all media (audio, video, and app sharing), which could break calls entirely rather than just disabling video as intended. The proper parameter to…

Optimize network performance

Question

Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might have more than one correct solution, while others might not have a correct solution. After you answer a question in this section, you will NOT be able to return to it. As a result, these questions will not appear in the review screen. You are optimizing a network to better support voice and collaboration workloads in Microsoft Teams. When the users are at a specific corporate site, you need to prevent the users from adding video during calls. Solution: You run New-CsTeamsMeetingPolicy and set the -MediaBitRateKb parameter to 1. Does this meet the goal?

Options

  • AYes
  • BNo

How the community answered

(31 responses)
  • A
    26% (8)
  • B
    74% (23)

Explanation

Option B is correct because setting -MediaBitRateKb to 1 does not specifically prevent video - it severely restricts bandwidth for all media (audio, video, and app sharing), which could break calls entirely rather than just disabling video as intended. The proper parameter to explicitly prevent users from enabling video is -AllowIPVideo $false, which directly toggles video capability off. Additionally, New-CsTeamsMeetingPolicy only creates the policy; it must also be assigned to the target users via Grant-CsTeamsMeetingPolicy for it to take effect at that site. Option A is wrong because the solution uses the wrong parameter and incomplete steps - restricting bit rate is a bandwidth control, not a feature toggle.

Memory tip: Think of it this way - "IP Video" needs an "IP Video switch." -AllowIPVideo $false is the on/off switch for video; -MediaBitRateKb is the throttle knob for all media. Exam questions about blocking a specific feature (video, audio, screen share) almost always want an Allow* parameter set to $false, not a bandwidth parameter.

Topics

#Teams Meeting Policies#Media Bitrate#Video Control#Network Performance

Community Discussion

No community discussion yet for this question.

Full MS-720 Practice