You have an Exchange Server 2013 organization.
Each user has an In-Place Archive.
You discover that several items in a user’s In-Place Archive are corrupt.
You need to ensure that the user can access the corrupt items.
Which tool should you use?
A.
The Repair-FileIntegrity cmdlet
B.
The Isinteg command
C.
The New-MailboxRepairRequest cmdlet
D.
The Eseutil command
Explanation:
New-MailboxRepairRequest
New-MailboxRepairRequest -Mailbox ayla -CorruptionType
ProvisionedFolder,SearchFolder,AggregateCounts,Folderview –Archive
New-MailboxRepairRequest
This cmdlet is available only in on-premises Exchange Server 2013.
Use the New-MailboxRepairRequest cmdlet to detect and fix mailbox corruptions. You can run this command
against a specific mailbox or against a database. While this task is running, mailbox access is disrupted only for
the mailbox being repaired. If you’re running this command against a database, only the mailbox being repaired
is disrupted. All other mailboxes on the database remain operational.
Examples
EXAMPLE 1
This example detects and repairs all folder views for the mailbox [email protected].
New-MailboxRepairRequest -Mailbox [email protected] -CorruptionType FolderViewEXAMPLE 2
This example only detects and reports on ProvisionedFolder and SearchFolder corruption issues to Ayla Kol’s
mailbox. This command doesn’t repair the mailbox.
New-MailboxRepairRequest -Mailbox ayla -CorruptionType ProvisionedFolder,SearchFolder –DetectOnly
EXAMPLE 3
This example detects and repairs AggregateCounts for all mailboxes on mailbox database MBX-DB01.
New-MailboxRepairRequest -Database MBX-DB01 -CorruptionType AggregateCounts
EXAMPLE 4
This example detects and repairs all corruption types for Ayla Kol’s mailbox and archive.
New-MailboxRepairRequest -Mailbox ayla -CorruptionType
ProvisionedFolder,SearchFolder,AggregateCounts,Folderview -Archive
EXAMPLE 5
This example creates a variable that identifies Ann Beebe’s mailbox and then uses the variable to specify the
values for the Database and StoreMailbox parameters to create a request to detect and repair all corruption
types.
$Mailbox = Get-MailboxStatistics annb
New-MailboxRepairRequest -Database $Mailbox.Database -StoreMailbox $Mailbox.MailboxGuid –
CorruptionType ProvisionedFolder,SearchFolder,AggregateCounts,Folderview
http://technet.microsoft.com/en-us/library/ff625226(v=exchg.150).aspx