exam questions

Exam 70-347 All Questions

View all questions & answers for the 70-347 exam

Exam 70-347 topic 3 question 4 discussion

Actual exam question from Microsoft's 70-347
Question #: 4
Topic #: 3
[All 70-347 Questions]

You are the Office 365 administrator for your company. The company uses Microsoft Exchange Online and Microsoft Lync Online.
An employee named User1 has the user name, email address, and Lync address [email protected].
The employee requests that you change only his Lync address to [email protected].
You start a Windows PowerShell session and run the following commands, providing your admin account credentials when prompted:

You need to complete the process of updating the employee's Lync address without affecting any other addresses.
Which Windows PowerShell command should you run next?

  • A. Set-MsolUser -UserPrincipalName $ID -ProxyAddresses@{add = "$NewAddress"; remove = "$OldAddress">
  • B. Set-Mailbox -Identity $ID -EmailAddresses@{add = "$NewAddress"; remove = "$Old Address"}
  • C. Set-Mailbox -Identity $ID -WindowsEmailAddress $NewAddress
  • D. Set-CsUser -Identity $ID -ProxyAddresses@{add = M$NewAddress''; remove="$OldAddress">
Show Suggested Answer Hide Answer
Suggested Answer: B 🗳️
We can use the Set-Mailbox cmdlet with the EmailAddresses parameter to configure the email addresses for users mailbox. In this question, we need to modify the Lync address. Lync addresses are notated by placing SIP: in front of the address whereas Exchange email addresses are notated by placing SMTP: in front of the address.
In the PowerShell script:
The $ID variable is used to store the users identity.
The $OldAddress variable is used to store the users old Lync address SIP:[email protected].
The $NewAddress variable is used to store the users new Lync address SIP:[email protected].
In the following PowerShell command:
Set-Mailbox -Identity $ID -EmailAddresses@{add = "$NewAddress"; remove = "$Old Address"}
The EmailAddresses parameter adds the new address by (add = "$NewAddress") and removes the old address (remove = "$Old Address") thus changing the
Lync address as required in the question.

Comments

Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
Currently there are no comments in this discussion, be the first to comment!
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...