exam questions

Exam MS-203 All Questions

View all questions & answers for the MS-203 exam

Exam MS-203 topic 3 question 53 discussion

Actual exam question from Microsoft's MS-203
Question #: 53
Topic #: 3
[All MS-203 Questions]

DRAG DROP -
You have a Microsoft Exchange Server 2019 hybrid deployment that contains an on-premises public folder named PF1.
PF1 contains 250 contact items.
You need to create mail contacts in Exchange Online based on the items in PF1.
Which three actions should you perform in sequence? To answer, move the appropriate actions from the list of actions to the answer area and arrange them in the correct order.
Select and Place:

Show Suggested Answer Hide Answer
Suggested Answer:
Step 1: From Microsoft Outlook, create a folder for mail and post items and copy the contacts items from PF1.
Step 2: From Microsoft Outlook, export the contact items to a CSV file
Bulk import external contacts to Exchange Online (step 2 and step 3)
Create a CSV file that contains information about the external contacts
The first step is to create a CSV file that contains information about each external contact that you want to import to Exchange Online.
Step 3: Run the Import-csv cmdlet to import the contact items to Exchange Online
Create the external contacts with PowerShell
The next step is to use the CSV file that you created in Step 2 and PowerShell to bulk import the external contacts listed in the CSV file to Exchange Online.
Run the following command to create the external contacts:
Import-Csv .\ExternalContacts.csv|%{New-MailContact -Name $_.Name -DisplayName $_.Name -ExternalEmailAddress $_.ExternalEmailAddress -FirstName
$_.FirstName -LastName $_.LastName}
It might take a while to create the new contacts, depending on how many you're importing. When the command is finished running, PowerShell displays a list of the new contacts that were created.
Incorrect:
* Import-LocalizedData
The Import-LocalizedData cmdlet dynamically retrieves strings from a subdirectory whose name matches the UI language set for the current user of the operating system. It is designed to enable scripts to display user messages in the UI language selected by the current user.
Reference:
https://docs.microsoft.com/en-us/microsoft-365/compliance/bulk-import-external-contacts?view=o365-worldwide

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
PawelNotts
Highly Voted 1 year, 9 months ago
It doesn't seem to be possible to copy contacts into a 'mail and post' type of folder. Contacts can be copied into a folder of the 'contact items' type.
upvoted 5 times
...
Amir1909
Most Recent 6 months, 2 weeks ago
- From Microsoft Outlook, create a custom folder for Contacs and copy then contact items From PF1 - From Microsoft Outlook, export the contact items to a CSV file - Run the Import-CSV cmdlet to import the contact items to Exchange online
upvoted 2 times
...
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 ...