This article refers to Barracuda Message Archiver Legacy Release firmware or higher.
An Office 365 Exchange online service account provides Exchange Server directory permissions to grant the Barracuda Message Archiver read and write access to all mailboxes.
Requirements
Windows 8 or 8.1
Windows Server 2012 or Windows Server 2012 R2
Windows 7 Service Pack 1 (SP1)
Windows Server 2008 R2 SP1
Microsoft .NET Framework 4.5 or 4.5.1 and either the Windows Management Framework 3.0 or the Windows Management Framework 4.0
Verify the service account has a mailbox, and is not hidden in the Global Address list
Connect to Office 365 Exchange Online
- Open Windows PowerShell, enter the following command, and then press Enter:
$UserCredential = Get-Credential
- In the Windows PowerShell Credential Request dialog box, enter your Exchange Online user name and password, and then click OK.
Enter the following command, and then press Enter:
$Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential $UserCredential -Authentication Basic -AllowRedirection
- Enter the following command, and then press Enter:
Import-PSSession $Session
Enter the following command, and then press Enter:
Get-Mailbox -ResultSize unlimited | Add-MailboxPermission -User ServiceAccount@domain.com -AccessRights fullaccess -InheritanceType all -Automapping $false
Where
ServiceAccount@domain.com
represents your service account.