Create your own brick-level backup script for Exchange Server 5.5

Size: px
Start display at page:

Download "Create your own brick-level backup script for Exchange Server 5.5"

Transcription

1 Create your own brick-level backup script for Exchange Server 5.5 By Dominic Bosco Every Exchange Organization has its Very Important Mailboxes (VIMs). If you re like most Exchange Administrators, you have a select group of users who have made it perfectly clear that they just can t do without their mailbox s content for any longer than necessary, regardless of whether they deleted the data themselves or whether their server crashed. Wouldn t you sleep easier at night knowing you have a plan and method ready to restore these critical mailboxes at a moment s notice? In this article, we ll discuss select mailbox, or brick-level, backups of Exchange Server Information Stores. Then, we ll show you how to use an NT Shell Script that uses Exchange Administrator and an updated Microsoft Back Office Resource Kit tool to perform an online backup of a select group of mailboxes and archive the data in.pst files on disk. You can then use NTBackup or any other file-level backup utility to back up these.pst files to tape or other media. If you are not familiar with NT Command Shell scripting, see my series of four articles on the subject. Did you miss the previous articles on NT Command Shell scripting? The (script) writing is on the wall ( Use NT command shell to automate admin tasks ( Add reporting functions to scripts using standard output ( Write flexible NT Command Shell scripts ( This article presents advanced scripting techniques and assumes that you are familiar with Exchange Administrator s command-line export option, use of command line tools, and a text editor. No native brick-level backup capability Unfortunately, neither Exchange Server 5.5 nor the Exchange-aware version of NTBackup allows you to back up (or restore) a single or select number of mailboxes. So how do you perform a brick-level backup or restore of an Exchange Server? Well, unless you use a costly 3 rd party Exchange-Aware Backup application or our free script, you ll have to do it the old-fashioned way. If you use NTBackup, you ll first have to perform an online or offline backup to archive your entire Information Store to tape. As you probably know, NTBackup doesn t allow you to back up data disk or other media. Then, when it comes time to restore data from even a single mailbox, you ll need to restore the entire Information Store database from tape, a tedious task TechRepublic, Inc. All rights 1 reserved.

2 Imagine this brick-level restore scenario where you use NTBackup to back up and restore your Exchange Servers. Suppose a VIP user asks you to restore messages that he permanently deleted from his VIM four days ago. Your Information Store s Deleted Items Retention period is three days, but your tape back retention period is seven days. So, off you go to the tape vault to fetch the last good backup (which is more than four days old) of the IS database containing the mailbox. You must restore this database to a recovery Server that s separated from your Exchange Organization. After completing the tape restore and starting the Information Store (which may take a long time if you have several days' worth of incremental log files to play against the IS), you must run the DS/IS Consistency Adjuster. Then, you must start the Directory Service, create a MAPI profile, and use it to log on to the mailbox and export the data to a.pst file. Finally, you must import the data from the.pst file to the production server that hosts the user s mailbox. As you can see, this process will consume a lot of your time and resources and keep your user waiting all the while. In fact, my experience has shown me that restoring 11-16GB Information Stores in this manner from 4mm DAT cartridges can take 24 hours or longer. Why create your own brick-level solution? There are 3 rd party backup applications that come with software agents that let you perform online brick-level backups of an Exchange Information Store. However, I ve tested these applications and found that they are not only costly, they also have some serious shortcomings. For example, some of the tools won t allow you to restore attachments stored within a message and others do not reliably restore the mailbox data. Because I could not find a 3 rd party brick-level backup utility that met my department s needs or budget, I decided to create my own tool in the form of an NT Shell Script that would use Exchange Administrator and the Exmerge utility from the BORK to back up individual mailboxes. Both of these tools should be readily available to any Exchange Administrator, so implementing this script should require little or no investment. I saw a great advantage in a process that would archive data to disk rather than tape. Once the data was staged to disk, I could use another process (perhaps a nightly backup of shared directories) to back up the staged data to tape, thereby creating a simple but effective Hierarchical Storage Management system. The Swiss Army Knife of Exchange tools Exmerge s primary purpose is to move Exchange Mailboxes between sites, Servers, and Organizations. It provides a programmatic method to perform tasks that would otherwise be very complicated or take a lot of time to do manually. However, the program has many other features and capabilities, and every Exchange administrator would do well to become familiar with them. The BORK 2 included an early version of Exmerge (EXMERGE.EXE). But you ll need to obtain Exmerge version 3.65 from the Microsoft FTP site before implementing the script I present here. Download the file ExMerge3_65Intel_zip_ from Microsoft (ftp://ftp.microsoft.com/transfer/outgoing/bussys/mail). Note: Please thoroughly read the documentation that comes with Exmerge. Unintentional misuse of this tool can have disastrous consequences. Like many command-line tools you can run as batch processes, Exmerge uses an initialization file, EXMERGE.INI. EXBRICKBKUP.ZIP includes a sample of this file that you will need to customize before your run EXBRICKBK.CMD TechRepublic, Inc. All rights 2 reserved.

3 The script s features and requirements For the purpose of demonstration, I ve kept the script as simple as possible. It has two main features. First, the script allows you to easily maintain a list of mailboxes that you need to include in the brick-level backup by simply adding them to a Distribution List of your choice. Second, the script runs Exmerge in batch mode and archives the mailboxes to.pst files in a directory you ve chosen. Please note that the script doesn t have reporting or tape archival features, though you can easily add them if you want. The script requires the following support files to be present in the same directory or in the path: BRICKBKUP.TPL Shown in Listing A and included in EXBRICKBKUP.ZIP. This is a plain text template file that BRICKBKUP.CMD will use to create the Exchange Administrator export file, BRICKBKUP.CSV. BRICKBKUP.OPT Shown in Listing B and included in EXBRICKBKUP.ZIP. This is the options file that Exchange Administrator uses when exporting the membership of the distribution list. Listing A: BRICKBKUP.TPL Obj-Class,Members Listing B: BRICKBKUP.OPT [Export] DirectoryService=<servername> Basepoint=/o=<orgname>/ou=<sitename>/cn=<containername>/cn=BRICKBKMailboxes ExportObject=DL BasepointOnly=Yes MVSeparator=010 Stepping through the script s code First, we ll give you the pseudo-code for the script and then explain how to configure the script s path variables and its support files. The following list steps through the pseudocode for the BRICKBKUP.CMD script: 1) Sets script variables that define the proper paths for the script s runtime environment. 2) Changes to the script s directory. 3) Deletes the old directory export file. 4) Copies the directory export template to create the new directory export file. 5) Runs Exchange Administrator against the designated Directory Server and options file BRICKBKUP.CSV and captures the output to the directory export file, BRICKBKUP.CSV. 6) Parses the BRICKBKUP.CSV and calls a procedure that captures the Distinguished Names of mailboxes that need to be backed up in Exmerge mailbox name file (mailboxes.txt). 7) Runs EXMERGE.EXE against the mailboxes.txt file (specified in EXMERGE.INI) and creates or merges data into each mailbox s.pst file in the Exmergedata directory TechRepublic, Inc. All rights 3 reserved.

4 Setting the script s environment variables Before using EXBRICKBKUP.CMD, you will need to change three statements that set environment variables at the beginning of the batch file. SET EXMERGE_PATH=<drive letter:\path\directory> - Set this variable to the drive letter and complete path to the directory where you re executing Exmerge. SET ExportSrv=<servername> - Set this variable to the computer name of an Exchange Server in your Organization. SET EXMERGEDATAPATH=<drive letter:\path\directory> - Set this variable to the drive letter and complete path to the directory where you want Exmerge to create the.pst files. Configuring the Exchange Administrator Export Option file The EXBRICKBK.OPT file contains parameters that Exchange Administrator will use to export the membership of the EXBRICKBKMailboxes Distribution List. Set the parameters' values as follows: DirectoryService Change the value of this parameter to the computer name of the server you want to run the Directory Export against. Basepoint Change the value of this parameter to the Distinguished Name for the BRICKBKMailboxes Distribution List. Insert the Organization Name (<orgname>), Site Name (<sitename>), Container Name, (<containername>), and Canonical Name (or alias in this case, BRICKBKMailboxes) where appropriate. ExportObject Leave this value as DL, which indicates that you want to export a Distribution List object. BasepointOnly Leave this value as Yes, which instructs Exchange Administrator to only export the data for the Basepoint that you ve specified. MVSeparator Leave this value as 010, which is the ASCII value for the Line Feed character. Doing so will change Exchange Administrator s multi-value output from comma separated to line feed separated. This allows the script to use the FOR command to parse the file. Configuring the Exmerge Initialization File To make Exmerge function within the EXBRICKBKUP.CMD script, you ll want to change the default values of certain parameters in the EXMERGE.INI initialization files. Open EXMERGE.INI in a standard text editor and change the following parameters: SourceServerName Change the value for this option to the computer name for an Exchange Server in your Organization. LogFileName Change the value for this option to the complete path and filename of the file you want to use to log Exmerge s activity. LoggingLevel Change the value for this option to choose Exmerge s Logging Level. 1 is the lowest and 3 is the highest. DataDirectoryName Change the value for this option to the directory where you want Exmerge to create the.pst files for the selected mailboxes. FileContainingListOfMailboxes Change the value for this option to the complete path and filename for the file that contains the distinguished names Mailboxes.txt file TechRepublic, Inc. All rights 4 reserved.

5 Implementing the script I recommend that you schedule the EXBRICKBKUP.CMD script to run at least once daily. When you schedule the script using the AT.EXE scheduler, be sure that you ve configured the Schedule Service to run under an account that has the Admin permissions to the mailboxes that you want to back up. Configuring the Schedule Service to run under the Exchange Service Account is probably your best bet. If you re planning on using the script to back up mailboxes in multiple sites that use different Exchange Service Accounts (or that exists in a domain that doesn t trust your domain), you ll need to schedule other instances of EXBRICKBKUP.CMD using a schedule service with the required security credentials to access the mailboxes in other sites. Restoring mailbox data When it comes time to restore mail from a mailbox s.pst file, you ll have several options. You can run Exmerge in normal (as opposed to batch) mode and use its graphical user interface to select the.pst data by a range of dates or other criteria and restore them directly to any production mailbox. Or you can copy the.pst file to the user s local disk or make it available on a network share. Then, instruct the user to add Personal Folders to their Outlook Profile and add the.pst file when they do so. The user can then browse through the.pst file s contents and retrieve the messages they are looking for. Managing the archived data Exmerge does not password-protect the.pst files it creates. Therefore, you ll want to be sure that Exmerge creates the.pst files on a secure file system, such as NTFS, and that you ve configured the directory s share (if any) and user level permissions correctly. Additionally, you ll need to consider how much space is required to store the.pst files and with what frequency you will have to purge the archived.pst files. If there is no corresponding.pst file for the mailbox in the EXMERGEDATA, Exmerge will create a new.pst file for the mailbox by exporting all the mailbox's contents to a newly created.pst file. The.PST file naming convention is <alias>.pst. If a.pst file for the mailbox already exists in the EXMERGEDATA directory, EXMERGE.EXE will export only new message data from the mailbox to the.pst file. Exmerge cannot synchronize the.pst file with the mailbox, it can only add new data to the.pst file which means that the.pst files in the EXMERGEDATA directory can only grow once they've been created. Therefore, you may need to add functionality to EXBKBRICKBKUP.CMD that purges.pst files of a certain age or moves them to another directory so that Exmerge will create new, smaller.pst files when it runs next. When Exmerge exports mailbox data to a.pst file, you lose the benefit of Microsoft Exchange Server s Single-Instance message storage capability. So don t be surprised if a mailbox s newly created.pst file is 10-50% larger than the mailbox itself. To check an individual mailbox s size, open Exchange Administrator, select the Server that hosts the mailbox, and then open Private Information Store Mailbox Properties and locate the mailbox from the list of the server s mailboxes. This document is provided for informational purposes only and TechRepublic makes no warranties, either expressed or implied, in this document. Information in this document is subject to change without notice. The entire risk of the use or the results of the use of this document remains with the user. No association with any real company, organization, product, person or event is intended or should be inferred. Complying with all applicable copyright laws is the responsibility of the user. Without limiting the rights under copyright, no part of this document may be reproduced, stored in or introduced into a retrieval system, or transmitted in any form or by any means (electronic, mechanical, photocopying, recording, or otherwise), or for any purpose, without the express written permission of TechRepublic. The names of actual companies and products mentioned herein may be the trademarks of their respective owners TechRepublic, Inc. All rights 5 reserved.

Exchange Brick-level Backup and Restore

Exchange Brick-level Backup and Restore WHITEPAPER BackupAssist Version 4 Exchange Mailbox Add-on www.backupassist.com 2 Contents 1. Introduction and Overview... 3 1.1 What does the Exchange Mailbox Add-on do?... 3 1.2 Who needs the Exchange

More information

Mailbox Recovery for Microsoft Exchange 2000 Server. Published: August 2000 Updated: July 2002 Applies To: Microsoft Exchange 2000 Server SP3

Mailbox Recovery for Microsoft Exchange 2000 Server. Published: August 2000 Updated: July 2002 Applies To: Microsoft Exchange 2000 Server SP3 Mailbox Recovery for Microsoft Exchange 2000 Server Published: August 2000 Updated: July 2002 Applies To: Microsoft Exchange 2000 Server SP3 Copyright The information contained in this document represents

More information

Exchange Mailbox Protection Whitepaper

Exchange Mailbox Protection Whitepaper Exchange Mailbox Protection Contents 1. Introduction... 2 Documentation... 2 Licensing... 2 Exchange add-on comparison... 2 Advantages and disadvantages of the different PST formats... 3 2. How Exchange

More information

Recovering Microsoft Exchange Server Data

Recovering Microsoft Exchange Server Data Recovering Microsoft Exchange Server Data An Altegrity Company 1 Why Recovering and Searching Email Archives Is Important 3 Why Recovering and Searching Email Archives Is Difficult 5 How Ontrack PowerControls

More information

Redeploying Microsoft CRM 3.0

Redeploying Microsoft CRM 3.0 Redeploying Microsoft CRM 3.0 2005 Information in this document, including URL and other Internet Web site references, is subject to change without notice. Unless otherwise noted, the example companies,

More information

Exchange 2003 Single E-mail/Mailbox Restore: From an image-level backup. Written By: Ricky El-Qasem Senior Systems Engineer Veeam Software

Exchange 2003 Single E-mail/Mailbox Restore: From an image-level backup. Written By: Ricky El-Qasem Senior Systems Engineer Veeam Software Exchange 2003 Single E-mail/Mailbox Restore: From an image-level backup Written By: Ricky El-Qasem Senior Systems Engineer Veeam Software Contents EXECUTIVE SUMMARY... 3 ASSUMPTIONS... 3 EXCHANGE 2003

More information

Personal Archiving in Exchange Online

Personal Archiving in Exchange Online Personal Archiving in Exchange Online IT Professional & Customer Helpdesk Feature Guide Exchange Online Personal Archiving Feature Guide - 12.3 Release Office 365 Dedicated & ITAR-Support Plans Revised:

More information

Email Management in Today s Regulatory Environment

Email Management in Today s Regulatory Environment Email Management in Today s Regulatory Environment An Altegrity Company 1 Why Recovering and Searching Email Archives Is Important 3 Why Recovering and Searching Email Archives Is Difficult 5 How Ontrack

More information

How to use Data Protector 6.0 or 6.10 with Exchange Recovery Storage Groups to restore a single mailbox

How to use Data Protector 6.0 or 6.10 with Exchange Recovery Storage Groups to restore a single mailbox How to use Data Protector 6.0 or 6.10 with Exchange Recovery Storage Groups to restore a single mailbox Introduction... 3 Exchange 2003... 4 Creating a Recovery Storage Group... 4 Restoring the Information

More information

Attix5 Pro Plug-ins. V6.2 User Manual. Cover. for Microsoft Windows. Your guide to installing and using Attix5 Pro plug-ins. Last updated: 2011/10

Attix5 Pro Plug-ins. V6.2 User Manual. Cover. for Microsoft Windows. Your guide to installing and using Attix5 Pro plug-ins. Last updated: 2011/10 Attix5 Pro Plug-ins V6.2 User Manual Cover for Microsoft Windows Your guide to installing and using Attix5 Pro plug-ins. Last updated: 2011/10 SERVER EDITION V6.0 for MICROSOFT WINDOWS Copyright Notice

More information

How To Backup A Database In Navision

How To Backup A Database In Navision Making Database Backups in Microsoft Business Solutions Navision MAKING DATABASE BACKUPS IN MICROSOFT BUSINESS SOLUTIONS NAVISION DISCLAIMER This material is for informational purposes only. Microsoft

More information

User Guide. DocAve Lotus Notes Migrator for Microsoft Exchange 1.1. Using the DocAve Notes Migrator for Exchange to Perform a Basic Migration

User Guide. DocAve Lotus Notes Migrator for Microsoft Exchange 1.1. Using the DocAve Notes Migrator for Exchange to Perform a Basic Migration User Guide DocAve Lotus Notes Migrator for Microsoft Exchange 1.1 Using the DocAve Notes Migrator for Exchange to Perform a Basic Migration This document is intended for anyone wishing to familiarize themselves

More information

How to make a backup copy of a.pst file

How to make a backup copy of a.pst file How to make a backup copy of a.pst file If you do not use Outlook with Microsoft Exchange Server, Outlook stores all its data in a.pst file. You can use the backup copy to restore your Outlook data if

More information

Zen Internet. Online Data Backup. Zen Vault Professional Plug-ins. Issue: 2.0.08

Zen Internet. Online Data Backup. Zen Vault Professional Plug-ins. Issue: 2.0.08 Zen Internet Online Data Backup Zen Vault Professional Plug-ins Issue: 2.0.08 Contents 1 Plug-in Installer... 3 1.1 Installation and Configuration... 3 2 Plug-ins... 5 2.1 Email Notification... 5 2.1.1

More information

NSI Solutions with Microsoft VSS

NSI Solutions with Microsoft VSS Published: March 2004 Abstract With the introduction of Volume Shadow Copy Service (VSS) in Microsoft Windows Server 2003 and Windows Storage Server 2003 and the strength of NSI Software Double-Take you

More information

4.0. Offline Folder Wizard. User Guide

4.0. Offline Folder Wizard. User Guide 4.0 Offline Folder Wizard User Guide Copyright Quest Software, Inc. 2007. All rights reserved. This guide contains proprietary information, which is protected by copyright. The software described in this

More information

Microsoft Office 365 online archive features and FAQs

Microsoft Office 365 online archive features and FAQs Microsoft Office 365 online archive features and FAQs 1 Contents Contents... 2 Purpose... 3 Document Support Boundaries... 3 Examples used in this document... 3 Office 365 Archive... 4 Office 365 Archive

More information

WHITE PAPER ONTRACK POWERCONTROLS. Recovering Microsoft Exchange Server Data

WHITE PAPER ONTRACK POWERCONTROLS. Recovering Microsoft Exchange Server Data WHITE PAPER ONTRACK POWERCONTROLS Recovering Microsoft Exchange Server Data MARCH 2015 2 KROLL ONTRACK ONTRACK POWERCONTROLS Table of Contents pg 3 / Why Recovering and Searching Email Archives Is Important

More information

Backup and Recovery in Laserfiche 8. White Paper

Backup and Recovery in Laserfiche 8. White Paper Backup and Recovery in Laserfiche 8 White Paper July 2008 The information contained in this document represents the current view of Compulink Management Center, Inc on the issues discussed as of the date

More information

EventTracker: Configuring DLA Extension for AWStats Report AWStats Reports

EventTracker: Configuring DLA Extension for AWStats Report AWStats Reports EventTracker: Configuring DLA Extension for AWStats Report AWStats Reports Publication Date: Oct 18, 2011 EventTracker 8815 Centre Park Drive Columbia MD 21045 www.eventtracker.com About This Guide Abstract

More information

Exchange Mailbox Protection

Exchange Mailbox Protection User Guide This guide applies to Windows Server 2008 and later. For Windows Server 2003, refer to the Exchange Server Protection whitepaper. BackupAssist User Guides explain how to create and modify backup

More information

CA ARCserve and CA XOsoft r12.5 Best Practices for protecting Microsoft Exchange

CA ARCserve and CA XOsoft r12.5 Best Practices for protecting Microsoft Exchange CA RECOVERY MANAGEMENT R12.5 BEST PRACTICES CA ARCserve and CA XOsoft r12.5 Best Practices for protecting Microsoft Exchange Overview Benefits The CA Advantage The CA ARCserve Backup Support and Engineering

More information

ADMT v3 Migration Guide

ADMT v3 Migration Guide ADMT v3 Migration Guide Microsoft Corporation Published: November 2006 Abstract This guide explains how to use the Active Directory Migration Tool version 3 (ADMT v3) to restructure your operating environment.

More information

Acronis Backup & Recovery 11.5. Backing Up Microsoft Exchange Server Data

Acronis Backup & Recovery 11.5. Backing Up Microsoft Exchange Server Data Acronis Backup & Recovery 11.5 Backing Up Microsoft Exchange Server Data Copyright Statement Copyright Acronis International GmbH, 2002-2012. All rights reserved. Acronis and Acronis Secure Zone are registered

More information

Migrate from Exchange Public Folders to Business Productivity Online Standard Suite

Migrate from Exchange Public Folders to Business Productivity Online Standard Suite Migrate from Exchange Public Folders to Business Productivity Online Standard Suite White Paper Microsoft Corporation Published: July 2009 Information in this document, including URL and other Internet

More information

Acronis Backup & Recovery 11.5

Acronis Backup & Recovery 11.5 Acronis Backup & Recovery 11.5 Update 2 Backing Up Microsoft Exchange Server Data Copyright Statement Copyright Acronis International GmbH, 2002-2013. All rights reserved. Acronis and Acronis Secure Zone

More information

Enterprise Vault 6.0. SMTP Archiving

Enterprise Vault 6.0. SMTP Archiving Enterprise Vault 6.0 SMTP Archiving Disclaimer The information contained in this publication is subject to change without notice. VERITAS Software Corporation makes no warranty of any kind with regard

More information

Pimbox Zarafa migration manual. Migration to Pimbox Zarafa

Pimbox Zarafa migration manual. Migration to Pimbox Zarafa Pimbox Zarafa migration manual Migration to Pimbox Zarafa Zarafa is a workgroup sharing solution based on the look-and-feel of Microsoft Outlook, which enables the sharing of mail and appointments from

More information

inforouter Version 8.0 Administrator s Backup, Restore & Disaster Recovery Guide

inforouter Version 8.0 Administrator s Backup, Restore & Disaster Recovery Guide inforouter Version 8.0 Administrator s Backup, Restore & Disaster Recovery Guide Active Innovations, Inc. Names of all products herein are used for identification purposes only and are trademarks and/or

More information

Archive One Policy V4.2 Quick Start Guide October 2005

Archive One Policy V4.2 Quick Start Guide October 2005 Archive One Policy V4.2 Quick Start Guide October 2005 Archive One Policy Quick Start Guide V4.2 Page 1 of 33 CONTENTS Introduction... 3 Components...3 Before You Start...4 System Requirements...5 Prerequisites...7

More information

WHITE PAPER: TECHNICAL OVERVIEW. NetBackup Desktop Laptop Option Technical Product Overview

WHITE PAPER: TECHNICAL OVERVIEW. NetBackup Desktop Laptop Option Technical Product Overview WHITE PAPER: TECHNICAL OVERVIEW NetBackup Desktop Laptop Option Technical Product Overview Mayur Dewaikar, Sr. Technical Product Manager NetBackup Platform Symantec Technical Network White Paper EXECUTIVE

More information

ShadowProtect Granular Recovery for Exchange Migration Scenarios

ShadowProtect Granular Recovery for Exchange Migration Scenarios ShadowProtect Granular Recovery for Exchange Migration Scenarios StorageCraft Technology Corporation 2010 StorageCraft Technology Corporation. All Rights Reserved. This brochure is for informational purposes

More information

Omniquad Exchange Archiving

Omniquad Exchange Archiving Omniquad Exchange Archiving Deployment and Administrator Guide Manual version 3.1.2 Revision Date: 20 May 2013 Copyright 2012 Omniquad Ltd. All rights reserved. Omniquad Ltd Crown House 72 Hammersmith

More information

ADMT v3.1 Guide: Migrating and Restructuring Active Directory Domains

ADMT v3.1 Guide: Migrating and Restructuring Active Directory Domains ADMT v3.1 Guide: Migrating and Restructuring Active Directory Domains Microsoft Corporation Published: July 2008 Authors: Moon Majumdar, Brad Mahugh Editors: Jim Becker, Fran Tooke Abstract This guide

More information

Windows Scheduled Tasks Management Pack Guide for System Center Operations Manager. Published: 07 March 2013

Windows Scheduled Tasks Management Pack Guide for System Center Operations Manager. Published: 07 March 2013 Windows Scheduled Tasks Management Pack Guide for System Center Operations Manager Published: 07 March 2013 Copyright Information in this document, including URL and other Internet Web site references,

More information

Acronis Backup & Recovery 11.5. Update 2. Backing Up Microsoft Exchange Server Data

Acronis Backup & Recovery 11.5. Update 2. Backing Up Microsoft Exchange Server Data Acronis Backup & Recovery 11.5 Update 2 Backing Up Microsoft Exchange Server Data Copyright Statement Copyright Acronis International GmbH, 2002-2013. All rights reserved. Acronis and Acronis Secure Zone

More information

EventTracker: Configuring DLA Extension for AWStats report AWStats Reports

EventTracker: Configuring DLA Extension for AWStats report AWStats Reports EventTracker: Configuring DLA Extension for AWStats report AWStats Reports Prism Microsystems Corporate Headquarter Date: October 18, 2011 8815 Centre Park Drive Columbia MD 21045 (+1) 410.953.6776 (+1)

More information

Veritas NetBackup for Microsoft Exchange Server Administrator s Guide

Veritas NetBackup for Microsoft Exchange Server Administrator s Guide Veritas NetBackup for Microsoft Exchange Server Administrator s Guide Windows Release 6.5 Veritas NetBackup for Microsoft Exchange Server Administrator s Guide Copyright 2002-2007 Symantec Corporation.

More information

Oracle Recovery Manager 10g. An Oracle White Paper November 2003

Oracle Recovery Manager 10g. An Oracle White Paper November 2003 Oracle Recovery Manager 10g An Oracle White Paper November 2003 Oracle Recovery Manager 10g EXECUTIVE OVERVIEW A backup of the database may be the only means you have to protect the Oracle database from

More information

Personal Folders Backup

Personal Folders Backup Personal Folders Backup The Personal Folders Backup tool is designed for use in Outlook 2000 and later and the operating systems that support each respective Outlook version. The tool provides a quick

More information

EVault for Data Protection Manager. Course 321 Protecting Exchange 2010 with DPM

EVault for Data Protection Manager. Course 321 Protecting Exchange 2010 with DPM EVault for Data Protection Manager Course 321 Protecting Exchange 2010 with DPM Table of Contents Objectives... 3 Scenario... 3 Estimated Time to Complete This Lab... 3 Requirements for This Lab... 3 Computers

More information

Dell Recovery Manager for Exchange 5.6. Product Overview

Dell Recovery Manager for Exchange 5.6. Product Overview Dell Recovery Manager for Exchange 5.6 2014 Dell Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in this guide is furnished under a

More information

CommVault Simpana Archive 8.0 Integration Guide

CommVault Simpana Archive 8.0 Integration Guide CommVault Simpana Archive 8.0 Integration Guide Data Domain, Inc. 2421 Mission College Boulevard, Santa Clara, CA 95054 866-WE-DDUPE; 408-980-4800 Version 1.0, Revision B September 2, 2009 Copyright 2009

More information

Acronis Backup & Recovery 11.5 Quick Start Guide

Acronis Backup & Recovery 11.5 Quick Start Guide Acronis Backup & Recovery 11.5 Quick Start Guide Applies to the following editions: Advanced Server for Windows Virtual Edition Advanced Server SBS Edition Advanced Workstation Server for Linux Server

More information

Solving.PST Management Problems in Microsoft Exchange Environments

Solving.PST Management Problems in Microsoft Exchange Environments Solving.PST Management Problems in Microsoft Exchange Environments An Osterman Research White Paper sponsored by Published April 2007 sponsored by Osterman Research, Inc. P.O. Box 1058 Black Diamond, Washington

More information

How To Recover From A Disaster In An Exchange 5.5 Server

How To Recover From A Disaster In An Exchange 5.5 Server 9 Backup and Recovery Operations Systems do not always run as smoothly as you would like. Hardware failures, software failures, human error, hacker attacks, and sometimes even natural disasters can disrupt

More information

Acronis Backup Advanced for Exchange. Version 11.5 Update 3. Backing Up Microsoft Exchange Server Data

Acronis Backup Advanced for Exchange. Version 11.5 Update 3. Backing Up Microsoft Exchange Server Data Acronis Backup Advanced for Exchange Version 11.5 Update 3 Backing Up Microsoft Exchange Server Data Copyright Statement Copyright Acronis International GmbH, 2002-2014. All rights reserved. Acronis and

More information

Version: 1.5 2014 Page 1 of 5

Version: 1.5 2014 Page 1 of 5 Version: 1.5 2014 Page 1 of 5 1.0 Overview A backup policy is similar to an insurance policy it provides the last line of defense against data loss and is sometimes the only way to recover from a hardware

More information

If you have used Outlook Web Access then you will find Zarafa Webaccess very familiar.

If you have used Outlook Web Access then you will find Zarafa Webaccess very familiar. Zarafa Setup Guide The Zarafa server on Igaware allows you to share e-mail, calendars, contacts and tasks via Outlook, on your PDA/Blackberry/Mobile phone or through our Webaccess. The Zarafa Webaccess

More information

Lepide Exchange Recovery Manager

Lepide Exchange Recovery Manager Configuration Guide Lepide Exchange Recovery Manager Lepide Software Private Limited, All Rights Reserved This User Guide and documentation is copyright of Lepide Software Private Limited, with all rights

More information

White Paper. Lepide Software Pvt. Ltd.

White Paper. Lepide Software Pvt. Ltd. Lepide Software Pvt. Ltd. White Paper Purpose of this White Paper is to present a business case for use of Lepide Exchange Manager as a complete Exchange Backup and Recovery solution in conjunction with

More information

Acronis Backup Advanced Version 11.5 Update 6

Acronis Backup Advanced Version 11.5 Update 6 Acronis Backup Advanced Version 11.5 Update 6 APPLIES TO THE FOLLOWING PRODUCTS Advanced for Exchange BACKING UP MICROSOFT EXCHANGE SERVER DATA Copyright Statement Copyright Acronis International GmbH,

More information

HP STORAGEWORKS STORAGE MIRRORING V4.5 SOFTWARE

HP STORAGEWORKS STORAGE MIRRORING V4.5 SOFTWARE You can read the recommendations in the, the technical guide or the installation guide for HP STORAGEWORKS STORAGE MIRRORING V4.5 SOFTWARE. You'll find the answers to all your questions on the HP STORAGEWORKS

More information

Pharos Uniprint 8.4. Maintenance Guide. Document Version: UP84-Maintenance-1.0. Distribution Date: July 2013

Pharos Uniprint 8.4. Maintenance Guide. Document Version: UP84-Maintenance-1.0. Distribution Date: July 2013 Pharos Uniprint 8.4 Maintenance Guide Document Version: UP84-Maintenance-1.0 Distribution Date: July 2013 Pharos Systems International Suite 310, 80 Linden Oaks Rochester, New York 14625 Phone: 1-585-939-7000

More information

Sophos Deployment Packager user guide. Product version: 1.2

Sophos Deployment Packager user guide. Product version: 1.2 Sophos Deployment Packager user guide Product version: 1.2 Document date: September 2014 Contents 1 About this guide...3 2 About Deployment Packager...4 2.1 Deployment Packager known issues and limitations...4

More information

NetVanta Unified Communications Server Backup and Restore Procedures

NetVanta Unified Communications Server Backup and Restore Procedures NetVanta Unified Communications Technical Note NetVanta Unified Communications Server Backup and Restore Procedures 1 Introduction 1.1 Overview This document provides backup and restore procedures to protect

More information

VERITAS NetBackup 6.0 for Microsoft Exchange Server

VERITAS NetBackup 6.0 for Microsoft Exchange Server VERITAS NetBackup 6.0 for Microsoft Exchange Server System Administrator s Guide for Windows N152688 September 2005 Disclaimer The information contained in this publication is subject to change without

More information

About This Guide... 4. Signature Manager Outlook Edition Overview... 5

About This Guide... 4. Signature Manager Outlook Edition Overview... 5 Contents About This Guide... 4 Signature Manager Outlook Edition Overview... 5 How does it work?... 5 But That's Not All...... 6 And There's More...... 6 Licensing... 7 Licensing Information... 7 System

More information

Using Depositit to Backup Microsoft Exchange Server

Using Depositit to Backup Microsoft Exchange Server Using Depositit to Backup Microsoft Exchange Server If you have subscribed to use Depositit s Microsoft Exchange Server backup facility, please make sure you have the Depositit software installed on the

More information

Step-by-Step Guide for Microsoft Advanced Group Policy Management 4.0

Step-by-Step Guide for Microsoft Advanced Group Policy Management 4.0 Step-by-Step Guide for Microsoft Advanced Group Policy Management 4.0 Microsoft Corporation Published: September 2009 Abstract This step-by-step guide describes a sample scenario for installing Microsoft

More information

Project management integrated into Outlook

Project management integrated into Outlook Project management integrated into Outlook InLoox PM 7.x off-line operation An InLoox Whitepaper Published: October 2011 Copyright: 2011 InLoox GmbH. You can find up-to-date information at http://www.inloox.com

More information

How To Use Gfi Mailarchiver On A Pc Or Macbook With Gfi Email From A Windows 7.5 (Windows 7) On A Microsoft Mail Server On A Gfi Server On An Ipod Or Gfi.Org (

How To Use Gfi Mailarchiver On A Pc Or Macbook With Gfi Email From A Windows 7.5 (Windows 7) On A Microsoft Mail Server On A Gfi Server On An Ipod Or Gfi.Org ( GFI MailArchiver for Exchange 4 Manual By GFI Software http://www.gfi.com Email: info@gfi.com Information in this document is subject to change without notice. Companies, names, and data used in examples

More information

While You Were Sleeping - Scheduling SAS Jobs to Run Automatically Faron Kincheloe, Baylor University, Waco, TX

While You Were Sleeping - Scheduling SAS Jobs to Run Automatically Faron Kincheloe, Baylor University, Waco, TX CC04 While You Were Sleeping - Scheduling SAS Jobs to Run Automatically Faron Kincheloe, Baylor University, Waco, TX ABSTRACT If you are tired of running the same jobs over and over again, this paper is

More information

Restoring mailboxes directly into. Exchange Server with BackupAssist. Jason Schultz, Lead Developer BackupAssist

Restoring mailboxes directly into. Exchange Server with BackupAssist. Jason Schultz, Lead Developer BackupAssist Restoring mailboxes directly into Exchange Server with BackupAssist Jason Schultz, Lead Developer BackupAssist Mailbox restores Good morning to all This presentation will cover: Introduction to Mailbox

More information

Archive Attender. Version 3.2. White Paper. Archive Attender is a member of the Attender Utilities family. www.re-soft.

Archive Attender. Version 3.2. White Paper. Archive Attender is a member of the Attender Utilities family. www.re-soft. Archive Attender Version 3.2 White Paper Archive Attender is a member of the Attender Utilities family Under the copyright laws, neither the documentation nor the software can be copied, photocopied, reproduced,

More information

For Active Directory Installation Guide

For Active Directory Installation Guide For Active Directory Installation Guide Version 2.5.2 April 2010 Copyright 2010 Legal Notices makes no representations or warranties with respect to the contents or use of this documentation, and specifically

More information

Automating client deployment

Automating client deployment Automating client deployment 1 Copyright Datacastle Corporation 2014. All rights reserved. Datacastle is a registered trademark of Datacastle Corporation. Microsoft Windows is either a registered trademark

More information

Email Archiving User Guide Outlook Plugin. Manual version 3.1

Email Archiving User Guide Outlook Plugin. Manual version 3.1 Email Archiving User Guide Outlook Plugin Manual version 3.1 Copyright 2012 Omniquad Ltd. All rights reserved. Omniquad Ltd Crown House 72 Hammersmith Road Hammersmith London W14 8TH United Kingdom Omniquad

More information

White Paper. Solve Exchange Storage Problems Once and For All. A New Approach without Stubs or Links. By Bob Spurzem. April 2008. Mimosa Systems, Inc.

White Paper. Solve Exchange Storage Problems Once and For All. A New Approach without Stubs or Links. By Bob Spurzem. April 2008. Mimosa Systems, Inc. White Paper By Bob Spurzem Mimosa Systems, Inc. April 2008 Solve Exchange Storage Problems Once and For All A New Approach without Stubs or Links C O N T E N T S Introduction...3 NearPoint Shadowing...4

More information

QAD Enterprise Applications. Training Guide Demand Management 6.1 Technical Training

QAD Enterprise Applications. Training Guide Demand Management 6.1 Technical Training QAD Enterprise Applications Training Guide Demand Management 6.1 Technical Training 70-3248-6.1 QAD Enterprise Applications February 2012 This document contains proprietary information that is protected

More information

ZCP trunk (build 24974) Zarafa Collaboration Platform. The Migration Manual

ZCP trunk (build 24974) Zarafa Collaboration Platform. The Migration Manual ZCP trunk (build 24974) Zarafa Collaboration Platform The Migration Manual Zarafa Collaboration Platform ZCP trunk (build 24974) Zarafa Collaboration Platform The Migration Manual Edition 2.0 Copyright

More information

Active Directory 2008 Operations

Active Directory 2008 Operations The Essentials Series Active Directory 2008 Operations sponsored by by Greg Shields Understanding Active Directory Recovery in Windows Server 2008...1 Backing Up AD...1 Full Server Recovery of a Domain

More information

Microsoft Exchange: Preparation for, and speedy recovery of, e Mail messaging & Exchange Data in Microsoft Small Business Server 2003

Microsoft Exchange: Preparation for, and speedy recovery of, e Mail messaging & Exchange Data in Microsoft Small Business Server 2003 Microsoft Exchange: Preparation for, and speedy recovery of, e Mail messaging & Exchange Data in Microsoft Small Business Server 2003 Henry Craven SBS MVP Co-author Microsoft Small Business Server 2003

More information

Backup and Restore with 3 rd Party Applications

Backup and Restore with 3 rd Party Applications Backup and Restore with 3 rd Party Applications Contents Introduction...1 Backup Software Capabilities...1 Backing up a Single Autodesk Vault Site...1 Backup Process...1 Restore Process...1 Backing up

More information

How To Back Up Your Pplsk Data On A Pc Or Mac Or Mac With A Backup Utility (For A Premium) On A Computer Or Mac (For Free) On Your Pc Or Ipad Or Mac On A Mac Or Pc Or

How To Back Up Your Pplsk Data On A Pc Or Mac Or Mac With A Backup Utility (For A Premium) On A Computer Or Mac (For Free) On Your Pc Or Ipad Or Mac On A Mac Or Pc Or Parallels Plesk Control Panel Copyright Notice ISBN: N/A Parallels 660 SW 39 th Street Suite 205 Renton, Washington 98057 USA Phone: +1 (425) 282 6400 Fax: +1 (425) 282 6444 Copyright 1999-2008, Parallels,

More information

Introducing Unlimited* Email Storage protected and stored for 10 years in

Introducing Unlimited* Email Storage protected and stored for 10 years in Introducing Unlimited* Email Storage protected and stored for 10 years in Securely store and access all your email from anywhere, anytime! Free up valuable time by letting your e-vault manage storage limits

More information

Usage Analysis Tools in SharePoint Products and Technologies

Usage Analysis Tools in SharePoint Products and Technologies Usage Analysis Tools in SharePoint Products and Technologies Date published: June 9, 2004 Summary: Usage analysis allows you to track how websites on your server are being used. The Internet Information

More information

Paragon Exchange Granular Recovery 2010

Paragon Exchange Granular Recovery 2010 PARAGON Technologie GmbH, Systemprogrammierung Heinrich-von-Stephan-Str. 5c 79100 Freiburg, Germany Tel. +49 (0) 761 59018201 Fax +49 (0) 761 59018130 Internet www.paragon-software.com Email sales@paragon-software.com

More information

Installing Windows Rights Management Services with Service Pack 2 Step-by- Step Guide

Installing Windows Rights Management Services with Service Pack 2 Step-by- Step Guide Installing Windows Rights Management Services with Service Pack 2 Step-by- Step Guide Microsoft Corporation Published: October 2006 Author: Brian Lich Editor: Carolyn Eller Abstract This step-by-step guide

More information

Graves IT Solutions Online Backup System FAQ s

Graves IT Solutions Online Backup System FAQ s Graves IT Solutions Online Backup System FAQ s How do I receive my username? The account username is proposed by the registrant at the time of registration. Once registration is completed, an email is

More information

BEST PRACTICES FOR PROTECTING MICROSOFT EXCHANGE DATA

BEST PRACTICES FOR PROTECTING MICROSOFT EXCHANGE DATA BEST PRACTICES FOR PROTECTING MICROSOFT EXCHANGE DATA Bill Webster September 25, 2003 VERITAS ARCHITECT NETWORK TABLE OF CONTENTS Introduction... 3 Exchange Data Protection Best Practices... 3 Application

More information

Auto Archiving Folders in Outlook XP

Auto Archiving Folders in Outlook XP Auto Archiving Folders in Outlook XP Your Outlook email account on the Exchange server is allotted 50 megabytes of storage space on the server. Items in the Inbox, Calendar, Sent Items, Deleted Items,

More information

Acronis Recovery TM for Microsoft Exchange TM

Acronis Recovery TM for Microsoft Exchange TM Acronis Recovery TM for Microsoft Exchange TM Reviewers Guide Introduction This guide is designed for members of the media, analysts and user organizations who will be evaluating Acronis Recovery for Microsoft

More information

SQL Server Database Administrator s Guide

SQL Server Database Administrator s Guide SQL Server Database Administrator s Guide Copyright 2011 Sophos Limited. All rights reserved. No part of this publication may be reproduced, stored in retrieval system, or transmitted, in any form or by

More information

IDERA WHITEPAPER. The paper will cover the following ten areas: Monitoring Management. WRITTEN BY Greg Robidoux

IDERA WHITEPAPER. The paper will cover the following ten areas: Monitoring Management. WRITTEN BY Greg Robidoux WRITTEN BY Greg Robidoux Top SQL Server Backup Mistakes and How to Avoid Them INTRODUCTION Backing up SQL Server databases is one of the most important tasks DBAs perform in their SQL Server environments

More information

Version 10. IV- Client Software Manual

Version 10. IV- Client Software Manual Version 10 IV- Client Software Manual Table of Contents CHECKLIST... 1 VAULTLOGIX IV-CLIENT PRE-INSTALLATION REQUIREMENTS... 3 DOCUMENT REVISION HISTORY TABLE... 4 INITIAL SETUP AND CONFIGURATION... 5

More information

BackupAssist v6 quickstart guide

BackupAssist v6 quickstart guide Using the new features in BackupAssist v6... 2 VSS application backup (Exchange, SQL, SharePoint)... 2 Backing up VSS applications... 2 Restoring VSS applications... 3 System State backup and restore...

More information

Do You Know Where Your Messages Are?

Do You Know Where Your Messages Are? Do You Know Where Your Messages Are? By Jason Sherry The need for message archiving In most organizations, an estimated 83 percent of all communications are electronic, with the vast majority of those

More information

Symantec Enterprise Vault

Symantec Enterprise Vault Symantec Enterprise Vault Guide for Mac OS X Users 10.0 Symantec Enterprise Vault: Guide for Mac OS X Users The software described in this book is furnished under a license agreement and may be used only

More information

How To Export Data From Exchange To A Mailbox On A Pc Or Macintosh (For Free) With A Gpl Or Ipa (For A Free) Or Ipo (For Cheap) With An Outlook 2003 Or Outlook 2007 (For An Ub

How To Export Data From Exchange To A Mailbox On A Pc Or Macintosh (For Free) With A Gpl Or Ipa (For A Free) Or Ipo (For Cheap) With An Outlook 2003 Or Outlook 2007 (For An Ub Exchange Client Quick Start Guide GAPC Hosted Exchange Client Guide Page 1 of 12 Client Requirements Hosted Exchange requires Outlook 2003 and Windows XP for MAPI access to your hosted Exchange mailboxes,

More information

Version 4.61 or Later. Copyright 2013 Interactive Financial Solutions, Inc. All Rights Reserved. ProviderPro Network Administration Guide.

Version 4.61 or Later. Copyright 2013 Interactive Financial Solutions, Inc. All Rights Reserved. ProviderPro Network Administration Guide. Version 4.61 or Later Copyright 2013 Interactive Financial Solutions, Inc. All Rights Reserved. ProviderPro Network Administration Guide. This manual, as well as the software described in it, is furnished

More information

Eradicating PST Files from Your Network

Eradicating PST Files from Your Network The Essentials Series: Operations Benefits of Email Archiving Eradicating PST Files from Your Network sponsored by by Jim McBee Eradicating PST Files from Your Network...1 Understanding the Disadvantages

More information

BackupAssist Common Usage Scenarios

BackupAssist Common Usage Scenarios WHITEPAPER BackupAssist Version 5 www.backupassist.com Cortex I.T. Labs 2001-2008 2 Table of Contents Introduction... 3 Disaster recovery for 2008, SBS2008 & EBS 2008... 4 Scenario 1: Daily backups with

More information

Symantec Backup Exec 11d for Windows Servers Sets the Standard for Exchange 2007 Server Data Protection

Symantec Backup Exec 11d for Windows Servers Sets the Standard for Exchange 2007 Server Data Protection Symantec Backup Exec 11d for Windows Servers Sets the Standard for Exchange 2007 Server Data Protection Agent for Microsoft Exchange Server TechPDF Peter Imming, Backup Exec Product Management April 16,

More information

Administration GUIDE. Exchange Database idataagent. Published On: 11/19/2013 V10 Service Pack 4A Page 1 of 233

Administration GUIDE. Exchange Database idataagent. Published On: 11/19/2013 V10 Service Pack 4A Page 1 of 233 Administration GUIDE Exchange Database idataagent Published On: 11/19/2013 V10 Service Pack 4A Page 1 of 233 User Guide - Exchange Database idataagent Table of Contents Overview Introduction Key Features

More information

Archiving in Microsoft Outlook. This document looks at archiving and saving space in the Microsoft Outlook email program. INFORMATION SYSTEMS SERVICES

Archiving in Microsoft Outlook. This document looks at archiving and saving space in the Microsoft Outlook email program. INFORMATION SYSTEMS SERVICES INFORMATION SYSTEMS SERVICES Archiving in Microsoft Outlook This document looks at archiving and saving space in the Microsoft Outlook email program. AUTHOR: ISS DATE: December 2005 EDITION: 2.0 TUT 104

More information

File and Printer Sharing with Microsoft Windows

File and Printer Sharing with Microsoft Windows Operating System File and Printer Sharing with Microsoft Windows Microsoft Corporation Published: November 2003 Abstract File and printer sharing in Microsoft Windows allows you to share the contents of

More information

Pipeliner CRM Phaenomena Guide Opportunity Management. 2015 Pipelinersales Inc. www.pipelinersales.com

Pipeliner CRM Phaenomena Guide Opportunity Management. 2015 Pipelinersales Inc. www.pipelinersales.com Opportunity Management 205 Pipelinersales Inc. www.pipelinersales.com Opportunity Management Learn how to manage sales opportunities with Pipeliner Sales CRM Application. CONTENT. Creating and sharing

More information

Installation and Setup: Setup Wizard Account Information

Installation and Setup: Setup Wizard Account Information Installation and Setup: Setup Wizard Account Information Once the My Secure Backup software has been installed on the end-user machine, the first step in the installation wizard is to configure their account

More information

While You Were Sleeping - Scheduling SAS Jobs to Run Automatically Faron Kincheloe, Baylor University, Waco, TX

While You Were Sleeping - Scheduling SAS Jobs to Run Automatically Faron Kincheloe, Baylor University, Waco, TX Paper 276-27 While You Were Sleeping - Scheduling SAS Jobs to Run Automatically Faron Kincheloe, Baylor University, Waco, TX ABSTRACT If you are tired of running the same jobs over and over again, this

More information