exam questions

Exam MS-203 All Questions

View all questions & answers for the MS-203 exam

Exam MS-203 topic 2 question 12 discussion

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

Your company has a Microsoft Exchange Server 2019 hybrid deployment.
The company has a finance department.
You need to move all the on-premises mailboxes of the finance department to Exchange Online. The bulk of the move operation must occur during a weekend when the company's Internet traffic is lowest. The move must then be finalized the following Monday. The solution must minimize disruption to end users.
What should you do first?

  • A. Create a batch migration and select the Automatically complete the migration batch check box.
  • B. Run the New-MigrationBatch cmdlet and specify the StartAfter parameter.
  • C. Run the New-MigrationBatch cmdlet and specify the CompleteAfter parameter.
  • D. Create a script that moves most of the mailboxes on Friday at 22:00 and the remaining mailboxes on Monday at 09:00.
Show Suggested Answer Hide Answer
Suggested Answer: B 🗳️

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
semipro
Highly Voted 2 years, 2 months ago
B is the correct answer. You don't want the migration to actually start until the weekend. By using the -StartAfter switch, you can set the migration to start on the weekend. You would then finalize the migration Monday morning using the Complete-MigrationBatch command If you selected C, the batch would start immediately and wouldn't satisfy the requirement of running over the weekend. You could use a combination of B and C to have the batch start on the weekend and automatically complete Monday morning, however, B is the "first step" to satisfy the requirements.
upvoted 15 times
J4U
2 years, 1 month ago
Correct. First step, the batch has to be started during the weekend using Start After. Then the batch can be completed manually on Monday.
upvoted 2 times
...
Harshul
1 year, 10 months ago
B is Correct #StartAfter The StartAfter parameter specifies a delay before the data migration for the users within the batch is started. The migration will be prepared, but the actual data migration for the user won't start until the date/time you specify with this parameter. #CompleteAfter The CompleteAfter parameter specifies a delay before the batch is completed. Data migration for the batch will start, but completion won't start until the date/time you specify with this parameter. https://docs.microsoft.com/en-us/powershell/module/exchange/new-migrationbatch?view=exchange-ps
upvoted 1 times
...
...
Cbruce
Highly Voted 2 years, 3 months ago
C seems like the best answer, but it seems to be missing a component. It needs to run on the weekend, so this would work if you ran this command on the weekend and not before. The CompleteAfter parameter specifies a delay before the batch is completed. Data migration for the batch will start, but completion won't start until the date/time you specify with this parameter. So setting it to complete Monday is correct. A. A. NO - Create a batch migration and select the Automatically complete the migration batch check box. - Starts it automatically, with no complete time B. NO - Run the New-MigrationBatch cmdlet and specify the StartAfter parameter. - would allow it to start when setup, but would complete it when it's done. C. BEST BUT NOT PERFECT - Run the New-MigrationBatch cmdlet and specify the CompleteAfter parameter. Seems like best answer, but is missing the component to start on the weekend. D. NO - Create a script that moves most of the mailboxes on Friday at 22:00 and the remaining mailboxes on Monday at 09:00. - not correct
upvoted 10 times
J4U
2 years, 1 month ago
I would go with B. The batch won't complete unless you specify it to complete automatically.
upvoted 1 times
...
ding29
1 year, 10 months ago
Sorry - I disagree. The question says 'what must you do *first*' - that implies that there will be multiple steps involved. Of course there is nothing to stop you using -StartAfter and --CompleteAfter in the same cmdlet in the real world, but we don't have that option here. So you must schedule the migration with -StartAfter, then use Set-MigrationBatch -CompleteAfter to finalise on Monday morning. The answer is B.
upvoted 3 times
...
Fabien92330
2 years ago
Agree with you. Dft not B as others say
upvoted 1 times
...
...
CarlosTech99
Most Recent 5 months ago
Selected Answer: B
This cmdlet will create a new migration batch, and the migration process will start after the specified date and time. By scheduling the migration to start during a weekend when the company's Internet traffic is lowest, you can minimize the impact on end users. New-MigrationBatch -Local -Remote -RemoteHostName "<ExchangeOnlineEndpoint>" -RemoteCredential (Get-Credential) -TargetDeliveryDomain "<ExchangeOnlineDomain>" -StartAfter "<DateTime>" Run the following command to create a new migration batch and specify the StartAfter parameter to schedule the start of the migration during a weekend when the company's Internet traffic is lowest
upvoted 1 times
...
CTP24
7 months, 3 weeks ago
Selected Answer: C
Question is a tricky one, it says the bulk of the data must be done when network less busy, so you'd then do -StartAfter and select Friday evening. But.... if you have larger mailboxes, you run the risk of them not completing in time for Monday, so -completedafter would make sense as it will move the majority of the data over, then complete the final few percent after the date you choose in time for Monday.
upvoted 1 times
...
Forkbeard
9 months ago
I would start the batch on Saturday and specify -CompleteAfter.
upvoted 1 times
...
Noie
10 months, 2 weeks ago
Selected Answer: C
C seems like the best answer
upvoted 1 times
...
[Removed]
10 months, 3 weeks ago
Selected Answer: B
what should do FIRST is B, to not use the internet traffic
upvoted 1 times
...
SkyGurl
1 year, 7 months ago
The question give the scenario but the question is "What should you do first?" So thinking B is the correct answer?
upvoted 1 times
...
delight_1
1 year, 8 months ago
Selected Answer: B
The StartAfter parameter specifies a delay before the data migration for the users within the batch is started. The migration will be prepared, but the actual data migration for the user won't start until the date/time you specify with this parameter CompleteAfter Data migration for the batch will start, but won't complete until [date specified here]. https://docs.microsoft.com/en-us/powershell/module/exchange/new-migrationbatch?view=exchange-ps
upvoted 2 times
...
JerT
1 year, 9 months ago
The CompleteAfter parameter specifies a delay before the batch is completed. Data migration for the batch will start, but completion won't start until the date/time you specify with this parameter. https://docs.microsoft.com/en-us/powershell/module/exchange/new-migrationbatch?view=exchange-ps
upvoted 1 times
...
maxustermann
1 year, 9 months ago
Selected Answer: B
B is correct, it wont end the batch automatically
upvoted 4 times
...
gta33578
1 year, 11 months ago
on exam 11-27-21 answer A was duplicated with select and unselect the auto complete instead of answer C
upvoted 4 times
...
Nickels
1 year, 11 months ago
Given answer is correct based on example 8:https://docs.microsoft.com/en-us/powershell/module/exchange/new-migrationbatch?view=exchange-ps
upvoted 1 times
...
Exchangist
2 years, 1 month ago
Be careful with this question in the exam as I believe the test may have slightly different versions. Pay attention to whether the requirement is MUST start at weekend or (the version I saw) whether the migration switch MUST be completed manually Monday morning. So its possible there are two questions which are quite similar, but with different requirements and therefore answers.
upvoted 4 times
XXXX
1 year, 6 months ago
Good point, in this question here i support C, because the Migration can be created on Weekend and completion can be set to Monday
upvoted 1 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