Documentation

Overview Documents

  • Preinstallation task
    • For Exchange 2007
      • Login to the Exchange Management Console.
      • Create a mailbox-enabled user called xchbckup.
        • Give the user Owner right on any public folder that you want to access.
      • Login to the Exchange Management Shell
        • Do one of those commands: 
          • add-exchangeadministrator “xchbckup” -role ViewOnlyAdmin
          • If you log in to another computer, type get-mailboxserver “<messaging_server_name>” | add-exchangeadministrator “xchbckup” -role ViewOnlyAdmin.
          • For each Microsoft Exchange Server 2007 instance that hosts users that you want to backup, type the following command:get-mailboxserver “<messaging_server_name>” | add-adpermission -user “xchbckup” -accessrights ExtendedRight -extendedrights Receive-As, ms-Exch-Store-AdminPermit
        • Do those command to add impersonation’s right:
          • This command add the Ad right  ms-Exch-EPI-Impersonation to the user specified to all CAS servers.
            • Get-ExchangeServer | where {$_.IsClientAccessServer -eq $TRUE} | ForEach-Object {Add-ADPermission -Identity $_.distinguishedname -User (Get-User -Identity xchbckup | select-object).identity -extendedRight ms-Exch-EPI-Impersonation}
          • This command add the Ad right  ms-Exch-EPI-May-Impersonate to the user for all users hosted by all mailbox servers.
            • Get-MailboxDatabase | ForEach-Object {Add-ADPermission -Identity $_.DistinguishedName -User xchbckup -ExtendedRights ms-Exch-EPI-May-Impersonate}
  • Installation
    • Unzip to the target directory.
    • Run the configuraiton wizard (config.exe) or import the registry setting from another installation (HKLMSoftwareJabea.netxchbckup)
    • Test with xchbckup.exe.
?
Advertisement