Files are not shown for backup(?) - HoffmannTom/outlookbackupaddin GitHub Wiki

Aim

Before starting a backup you have to configure which files should be included in the backup. Sometimes I get the question "Why are my outlook files not shown / visible?" and this page should clarify this question and show some background information.

PST and OST Files

Outlook can store its data in PST and OST files. There are some differences and limitations:

  • OST files are used for caching emails. All emails are synced with the email server.
  • OST are created when using IMAP or Exchange-protocol
  • PST files are created when configuring a POP3 access to your mailbox
  • Both formats can store emails, calendars and contacts
  • OST files can only be opened at the origin computer with the same email account and the same user profile

The last property disqualifies OST files for using for backup. Nobody wants a backup which can't be used at a different computer or at a different environment. There are some (commercial) tools available to gain access to OST file contents but it requires work and money which should actually be avoided by using a good backup strategy.

If you are not sure which files you are using, check

File --> Info --> Account settings -->in the new popup window check Tab "Data-files" The column "location" shows which files and formats are currently used.

Store calendar and contacts in PST-File

Since outlook 2013, local calendar and contact information might be stored together with your emails within your default OST-file. This happens for example when you merely configure one IMAP account. This raises the problem that also local calendar and contacts are stored within this default file.

If you want to backup calendar and contacs it is best to separate these data from your emails. Create a new PST file and move all the local data to this new PST file. Thus you can easily backup the PST file and losing the OST file is not an issue any more.

More information can be found at:

http://www.msoutlook.info/question/754

http://www.mailhilfe.de/beitrag-so-vermeiden-sie-den-verlust-ihrer-kontakte-und-kalendereintrge-durch-die-benut-3926-html (german)

Backup OST files

If the above mentioned facts couldn't convince you and you still insist on backing up your OST files, you can activate this feature within registry: HKEY_CURRENT_USER\SOFTWARE\CodePlex\BackupAddIn\Settings Set value of key: "ShowOSTFiles" to "True"

This change can also be made via command prompt:

reg Add HKCU\SOFTWARE\CodePlex\BackupAddIn\Settings /v ShowOSTFiles /f /t REG_SZ /d True

Exchange

If you are using Exchange on-premise, you can export your emails via PowerShell to a PST-File (New-MailboxExportRequest).

This shouldn't replace a fully fledged exchange database backup but can be used to easily store emails in a transportable file format.