exam questions

Exam MS-203 All Questions

View all questions & answers for the MS-203 exam

Exam MS-203 topic 3 question 34 discussion

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

HOTSPOT -
You have a Microsoft Exchange Server 2019 hybrid deployment.
You are migrating mailboxes from the on-premises organization to Exchange Online.
From the Exchange admin center, you create a new migration batch that includes 25 mailboxes, and then you select Manual Complete the batch.
Later, you must complete the migration of a mailbox named [email protected] in the batch as soon as possible. You discover that the status of the migration batch is Syncing, but the status of the move request for [email protected] is Synced.
You need to complete the migration of the [email protected] mailbox to Exchange Online as soon as possible.
How should you complete the command? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.
Hot Area:

Show Suggested Answer Hide Answer
Suggested Answer:
Reference:
https://docs.microsoft.com/en-us/powershell/module/exchange/move-and-migration/set-moverequest?view=exchange-ps

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
Ronnie123
Highly Voted 3 years, 3 months ago
Incorrect anwser. It should be set-moverequest <identity> -CompleteAfter(get-date).
upvoted 20 times
ghogh
2 years, 2 months ago
https://docs.microsoft.com/en-us/archive/blogs/fasttracktips/completing-individual-move-requests-from-a-migration-batch-changed-behavior
upvoted 5 times
...
...
Amir1909
Most Recent 2 months, 1 week ago
Correct
upvoted 1 times
...
Amir1909
2 months, 1 week ago
Is correct
upvoted 1 times
...
BigTone
5 months, 1 week ago
https://www.alitajran.com/complete-individual-mailbox-move-request-from-migration-batch/
upvoted 1 times
Nyamnyam
3 months, 2 weeks ago
So I don't have a test environment to validate my statement, but looking at Ali Tarjan's post linked above, Set-MoveRequest -Identity <user name> -CompleteAfter 1 will immediately trigger the completion, and the Move Request will show InProgress, then Completed. But since we have additional "-ResumeMoveRequest" in the Drag&Drop area, I presume that this was the 'old style' to do it, even if it is now deprecated or not recommended. So it would be safer to select the -PreventCompletion in this example. I hope you understand what I mean.
upvoted 1 times
...
...
kazaki
1 year, 11 months ago
The answer is correct $false: This is the default value. The move request is run and allowed to complete. If you created the move request with the SuspendWhenReadyToComplete or PreventCompletion switches, set this parameter to $false before you run the Resume-MoveRequest cmdlet to complete the move request. https://docs.microsoft.com/en-us/powershell/module/exchange/set-moverequest?view=exchange-ps
upvoted 2 times
...
SCT
2 years, 2 months ago
Correct answer
upvoted 2 times
...
Franco11
2 years, 6 months ago
If the Creator of this examtopic was attending real exam, i am sure he failed :) But Thanks a lot for providing the questions hope i will succeed
upvoted 2 times
Alexandersss
2 years, 3 months ago
then enlighten me with the correct answer.
upvoted 4 times
...
...
JClaude
2 years, 9 months ago
When you have several move requests that were defined in a Batch, and you wish to complete just one of the batches, and not all the batches, you need to set individually the Move Request for that user with the -CompleteAfter parameter. Optionnally you can add the -SuspendWhenReady:$false as well as the -PreventCompletion:$false. These two parameters used to work to be able to complete a move request within a Batch, but recent changes in Exchange Online and Exchange 2016/2019 made them inefficient for just completing a batch. Now you need the -CompleteAfter parameter as well, knowing that this parameter alone enables a Move Request to be completed.
upvoted 1 times
...
mthom15
2 years, 9 months ago
You can also do the "-CompleteAfter 1" instead of (GetDate) which will set it to complete immediately.
upvoted 2 times
...
Enoll
2 years, 10 months ago
It says: You need to complete the migration of the [email protected] mailbox to Exchange Online as soon as possible. So, with PreventCompletion $false it will complete it "as soon as possible" right?
upvoted 1 times
...
Stan007
3 years ago
correct answer is Get-MoveRequest "user1" |set-moverequest SuspendWhenReadytoComplete $false
upvoted 1 times
kazaki
1 year, 11 months ago
SuspendWhenReadytoComplete isn’t working anymore
upvoted 2 times
...
...
m2L
3 years ago
I think that answer is correct. Because complete after is going to complete automatically the migration or for me "as soon as possible" means manually isn't it .
upvoted 1 times
...
donathon
3 years, 1 month ago
So basically the move is already completed. The PreventCompletion parameter specifies whether to run the move request, but not allow it to complete. Valid values are: • $true: The move request is run but is not allowed to complete. Instead of this value, we recommend using the CompleteAfter parameter. • $false: This is the default value. The move request is run and allowed to complete. If you created the move request with the SuspendWhenReadyToComplete or PreventCompletion switches, set this parameter to $false before you run the Resume-MoveRequest cmdlet to complete the move request.
upvoted 2 times
...
Thanos
3 years, 1 month ago
Agree with ExamABC__2020, correct answers are: "Set-MoveRequest" and "-CompleteAfter(Get-Date)" Now let’s say you have 100 mailboxes with Synced status but you are ready to complete the migration for only half of them. Since the SuspendWhenReadyToComplete switch does not work anymore, that is what you have to do: For each of the mailboxes you plan to complete the migration, set the CompleteAfter date: Set-MoveRequest -Identity "[email protected]" -CompleteAfter (Get-Date) Resume the move request: Resume-MoveRequest -Identity "[email protected]" https://docs.microsoft.com/en-us/archive/blogs/fasttracktips/completing-individual-move-requests-from-a-migration-batch-changed-behavior
upvoted 2 times
kazaki
1 year, 11 months ago
This is archived blog
upvoted 1 times
...
...
waseemsmr
3 years, 1 month ago
The answer is correct. If you created the move request with the SuspendWhenReadyToComplete or PreventCompletion switches, set this parameter to $false before you run the Resume-MoveRequest cmdlet to complete the move request. https://docs.microsoft.com/en-us/powershell/module/exchange/set-moverequest?view=exchange-ps
upvoted 2 times
waseemsmr
3 years, 1 month ago
This talks about -PreventCompletion
upvoted 1 times
...
J4U
2 years, 4 months ago
Yes, the given answer is correct. Before resuming the move request the prevent completion switch has to be changed and that explained in the given article.
upvoted 1 times
...
...
ExamABC__2020
3 years, 2 months ago
Incorrect answer and already mentioned by Ronnie123 and Krkr_2020. It should absolutely be -CompleteAfter(get-date) See: https://docs.microsoft.com/en-us/archive/blogs/fasttracktips/completing-individual-move-requests-from-a-migration-batch-changed-behavior
upvoted 2 times
...
Only_Me1
3 years, 2 months ago
Answer is correct: Explained here: https://practical365.com/exchange-server/completing-individual-move-requests-migration-batch/
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 ...
exam
Someone Bought Contributor Access for:
SY0-701
London, 1 minute ago