ExamGecko
Question list
Search
Search

List of questions

Search

Related questions


SIMULATION Please wait while the virtual machine loads. Once loaded, you may proceed to the lab section. This may take a few minutes, and the wait time will not be deducted from your overall test time. When the Next button is available, click it to access the lab section. In this section, you will perform a set of tasks in a live environment. While most functionality will be available to you as it would be in a live environment, some functionality (e.g., copy and paste, ability to navigate to external websites) will not be possible by design. Scoring is based on the outcome of performing the tasks stated in the lab. In other words, it doesn't matter how you accomplish the task, if you successfully perform it, you will earn credit for that task. Labs are not timed separately, and this exam may have more than one lab that you must complete. You can use as much time as you would like to complete each lab. But, you should manage your time appropriately to ensure that you are able to complete the lab(s) and all other sections of the exam in the time provided. Please note that once you submit your work by clicking the Next button within a lab, you will NOT be able to return to the lab. Use the following login credentials as needed: To enter your username, place your cursor in the Sign in box and click on the username below. To enter your password, place your cursor in the Enter password box and click on the password below. Microsoft 365 Username: [email protected] Microsoft 365 Password: xxxxxx If the Microsoft 365 portal does not load successfully in the browser, press CTRL-K to reload the portal in a new browser tab. The following information is for technical support purposes only. Lab Instance: XXXXXX You need to ensure that a notification email is sent to [email protected] when a user marks an email message as Not Junk in Microsoft Outlook. To complete this task, sign in to the Microsoft 365 admin center.









Question 283 - MS-203 discussion

Report
Export

HOTSPOT

You have a Microsoft Exchange Online tenant.

Archive mailboxes are enabled for all users. You need to ensure that the default size of each user's archive mailbox increases automatically when the mailbox approaches the storage limit. The solution must apply automatically to all current and future mailboxes.

How should you complete the PowerShell command? To, answer select the appropriate options in the answer area.


Question 283
Correct answer: Question 283

Explanation:

Set-Mailbox -Identity * -ArchiveQuota "Unlimited"

To ensure that the default size of each user's archive mailbox increases automatically when the mailbox approaches the storage limit and to apply the solution automatically to all current and future mailboxes, you can use the Set-Mailbox cmdlet in PowerShell and specify the –ArchiveQuota parameter.

Here is an example of how you could complete the PowerShell command:

Copy code

Set-Mailbox -Identity * -ArchiveQuota "Unlimited"

This command will set the archive mailbox size to unlimited for all mailboxes in the tenant.

Please note that, when you set the archive mailbox size to unlimited, the user's mailbox will continue to grow until it reaches the available storage space in the tenant.

You could also set a specific size limit, for example:

Copy code

Set-Mailbox -Identity * -ArchiveQuota "50 GB"

This command will set the archive mailbox size to 50 GB for all mailboxes in the tenant.

You can then use the Get-Mailbox cmdlet to verify the new archive mailbox size for all mailboxes in the tenant:

Copy code

Get-Mailbox -Identity * | Select DisplayName, ArchiveQuota

This command will return the DisplayName and ArchiveQuota properties for all mailboxes in the

tenant.

asked 05/10/2024
Memo Albah
24 questions
User
0 comments
Sorted by

Leave a comment first