Discover how to configure simultaneous call forwarding in Microsoft Teams using the correct PowerShell cmdlet. Learn step-by-step with expert insights for the MS-721 exam.
Table of Contents
Question
You have a Microsoft Teams Phone deployment.
You need to ensure that incoming Teams calls to a user are simultaneously forwarded to their cell phone.
Which PowerShell cmdlet should you run?
Select only one answer.
A. Set-CsPhoneNumberAssignment
B. Set-CsTeamsUnassignedNumberTreatement
C. Set-CsUserCallingDelegate
D. Set-CsUserCallingSettings
Answer
To ensure incoming Teams calls to a user are simultaneously forwarded to their cell phone, use the Set-CsUserCallingSettings cmdlet. This cmdlet allows administrators to configure call forwarding rules, including simultaneous ringing to external numbers like a cell phone.
D. Set-CsUserCallingSettings
Explanation
Out of these options, Set-CsUserCallingSettings is the only way to set a simultaneous ring destination.
Key Configuration Steps
Enable Forwarding:
Set-CsUserCallingSettings -Identity [email protected] -IsForwardingEnabled $true
Set Forwarding Type to Simultaneous:
-ForwardingType Simultaneous
Specify Target Type and Phone Number:
-ForwardingTargetType SingleTarget -ForwardingTarget "+1234567890"
Example Full Command:
Set-CsUserCallingSettings -Identity [email protected] -IsForwardingEnabled $true -ForwardingType Simultaneous -ForwardingTargetType SingleTarget -ForwardingTarget "+1234567890"
Why This Works
- Set-CsUserCallingSettings directly manages call-forwarding rules, including simultaneous ringing to external numbers.
- Other options like Set-CsPhoneNumberAssignment (A) handle phone number assignments, not forwarding.
- Set-CsTeamsUnassignedNumberTreatment (B) applies to unassigned numbers, not user-specific call routing.
- Set-CsUserCallingDelegate (C) configures delegate permissions, not direct forwarding.
This configuration ensures simultaneous ringing on the user’s Teams client and their designated cell phone, adhering to Microsoft Teams Phone deployment best practices.
Microsoft 365 Certified Collaboration Communications Systems Engineer Associate MS-721 certification exam assessment practice question and answer (Q&A) dump including multiple choice questions (MCQ) and objective type questions, with detail explanation and reference available free, helpful to pass the Microsoft Collaboration Communications Systems Engineer MS-721 exam and earn Microsoft 365 Certified Collaboration Communications Systems Engineer Associate certification.