• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/6

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

6 Cards in this Set

  • Front
  • Back
What is a user mailbox?

What is a linked mailbox?
User mailboxes are message storage containers associated with user accounts in the forest in which you have deployed Exchange Server 2010.

Linked mailboxes are mailboxes that are connected to accounts hosted in forests other than the one in which you have deployed Exchange Server 2010. As mailboxes must be associated with accounts that are in the same forest as Exchange and linked mailboxes involve accounts in different forests, when you create a linked mailbox, Exchange creates a disabled user account in the local forest that is used as a stand-in for the foreign account.
How would you create a mailbox for Erik Anderson using the EMS?
New-Mailbox –Name 'Erik Andersen' –Alias 'Erik_Andersen' –UserPrincipalName 'Erik_
Andersen@adatum.com' –SamAccountName 'Erik_Andersen' –FirstName 'Erik' –LastName
'Andersen'
How would you add an Exchange mailbox for an existing user account using EMS?
Enable-Mailbox 'Adatum.com/Users/Toni Poe'

OR

Enable-Mailbox estherv@contoso.com -Database UsersMailboxDatabase
How would you use the EMS to find out which users have not been mail box enabled?

How would you use that same command and enable all them?
Get-User -RecipientTypeDetails User -Filter { UserPrincipalName -ne $Null }

Get-User -RecipientTypeDetails User -Filter { UserPrincipalName -ne $Null } | Enable-Mailbox
To configure storage quota settings on a per-mailbox level from the EMS, use the Set-Mailbox command. For example, to configure Rich Haddock’s mailbox so that it had a warning quota of 200 MB, a prohibit send quota of 250 MB, and a prohibit send and receive quota of 280 MB, issue the following command:
Set-mailbox rich_haddock -IssueWarningQuota 209715200 -ProhibitSendQuota 262144000 -ProhibitSendReceiveQuota 293601280 –RetainDeletedItemsFor 21.00:00:00 –UseDatabaseQuotaDefaults $false -UseDatabaseRetentionDefaults $false
In EMS, how would you configure Kim Akers's mailbox so that she can send messages that are a max of 20 MB is size and receive messages that are a max of 15 MB in size?
Set-Mailbox –Identity "Kim_Akers" -MaxSendSize 20mb –MaxReceiveSize 15mb