Backup Calander in Outlook 2010


  1. Posts : 491
    Windows 7
       #1

    Backup Calander in Outlook 2010


    I currently use a third party calander (rainlender) for memorable dates etc for the simple reason that I can backup the dates and events so if I ever have to re install to program I haven't lost the dates.

    I would rathe use the calander in Outlook as it would actually prefer not to have to use a third party program, but I don't know how to back up the dates in the Outlook calander.

    This means that if I had to re install Outlook I would also lose all my dates etc. does anyone know whether it is possible to to either archive or backup the calander in Outlook 2011.

    regards

    AF
      My Computer


  2. Posts : 400
    Windows 7 Home Premium (Retail) Full version - With SP1
       #2

    Yes, you certainly can back up the Calendar data files -- I do. I use xcopy in a batch file which backs up all sorts of things. I statement looks like this:

    @xcopy "d:\Outlook Data Files" "X:\Outlook Data Files" /D /y /s. 'X' is my external usb hard disk.

    Notice I moved my data files from their installed default location on C: to D:. You can find the location of your data files via, in Outlook, File>Account Settings>Data Files.

    Go for it and good luck!
      My Computer


  3. Posts : 19,383
    Windows 10 Pro x64 ; Xubuntu x64
       #3

    Hi Bomber,

    Your Outlook Calender is stored in the .PST file you use. So, if you backup the .PST file (using jsquareg's method, or simply by copying & pasting into a backup location (e.g. external USB drive) using Windows Explorer, then you are also backing up the calender.

    Note : if you manage seperate accounts in seperate .PST files, then you may have more than one calender - simply backup all the required .PST files.

    Make sure you exit and close Outlook completely, before you backup your .PST files.

    Regards,
    Golden
      My Computer


  4. Posts : 491
    Windows 7
    Thread Starter
       #4

    jsquareg said:
    Yes, you certainly can back up the Calendar data files -- I do. I use xcopy in a batch file which backs up all sorts of things. I statement looks like this:

    @xcopy "d:\Outlook Data Files" "X:\Outlook Data Files" /D /y /s. 'X' is my external usb hard disk.

    Notice I moved my data files from their installed default location on C: to D:. You can find the location of your data files via, in Outlook, File>Account Settings>Data Files.

    Go for it and good luck!

    That looks great but how do you go about backing up like that?
      My Computer


  5. Posts : 400
    Windows 7 Home Premium (Retail) Full version - With SP1
       #5

    Golden said:
    Hi Bomber,

    Your Outlook Calender is stored in the .PST file you use. So, if you backup the .PST file (using jsquareg's method, or simply by copying & pasting into a backup location (e.g. external USB drive) using Windows Explorer, then you are also backing up the calender.

    Note : if you manage seperate accounts in seperate .PST files, then you may have more than one calender - simply backup all the required .PST files.

    Make sure you exit and close Outlook completely, before you backup your .PST files.

    Regards,
    Golden
    You are absolutely correct about closing Outlook completely -- I learned the hard way!

    Actually, my batch file contains the following surrounding the xcopy command(s):

    REM Backup Outlook Data Files
    @echo Outlook Data Files to F: Drive .....
    TASKLIST /NH | FIND /I "Outlook.exe" > nul
    SET NodLevel=%ERRORLEVEL%
    IF %NodLevel%==0 GOTO IsRunning
    @xcopy "d:\Outlook Data Files\*.*" "F:\Outlook Data Files" /D /Y /s
    @echo Outlook Data Files to X:\
    @xcopy "d:\Outlook Data Files" "X:\Outlook Data Files" /D /y /s
    @echo ......

    GOTO LEAVEOUTLOOK
    :IsRunning
    echo CANNOT BACK UP OUTLOOK PST FILES BECAUSE OUTLOOK IS RUNNING
    :LEAVEOUTLOOK

    The code will not execute the xcopy if Outlook is running.

    Thanks for pointing out that point.
      My Computer


  6. Posts : 400
    Windows 7 Home Premium (Retail) Full version - With SP1
       #6

    Backup Calander in Outlook 2010


    BomberAF said:
    jsquareg said:
    Yes, you certainly can back up the Calendar data files -- I do. I use xcopy in a batch file which backs up all sorts of things. I statement looks like this:

    @xcopy "d:\Outlook Data Files" "X:\Outlook Data Files" /D /y /s. 'X' is my external usb hard disk.

    Notice I moved my data files from their installed default location on C: to D:. You can find the location of your data files via, in Outlook, File>Account Settings>Data Files.

    Go for it and good luck!

    That looks great but how do you go about backing up like that?
    Here is a batch file that will do the job. Copy and paste into Notepad then save it as 'anynameyouwantot.bat' and execute it.

    Notice it contains code that will prevent xcopying the data files if Outlook is running.

    Good Luck!

    cls
    @echo off
    REM Backup Outlook Data Files
    @echo Outlook Data Files to F: Drive .....
    TASKLIST /NH | FIND /I "Outlook.exe" > nul
    SET NodLevel=%ERRORLEVEL%
    IF %NodLevel%==0 GOTO IsRunning
    @xcopy "d:\Outlook Data Files\*.*" "F:\Outlook Data Files" /D /Y /s
    @echo Outlook Data Files to X:\
    @xcopy "d:\Outlook Data Files" "X:\Outlook Data Files" /D /y /s
    @echo ......

    GOTO LEAVEOUTLOOK
    :IsRunning
    echo CANNOT BACK UP OUTLOOK PST FILES BECAUSE OUTLOOK IS RUNNING
    :LEAVEOUTLOOK

    @PAUSE
    Exit
      My Computer


 

  Related Discussions
Our Sites
Site Links
About Us
Windows 7 Forums is an independent web site and has not been authorized, sponsored, or otherwise approved by Microsoft Corporation. "Windows 7" and related materials are trademarks of Microsoft Corp.

© Designer Media Ltd
All times are GMT -5. The time now is 05:19.
Find Us