Backup Calander in Outlook 2010

BomberAF

New member
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

Computer Manufacturer/Model Number
Dell Inspiron
OS
Windows 7
CPU
2.4 GHz Intel i3 cpu
Memory
8GB
Mouse
MS Explorer Mouse
Internet Speed
100 Mb/s
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

Computer type
PC/Desktop
Computer Manufacturer/Model Number
Dell XPS-8500
OS
Windows 7 Home Premium (Retail) Full version - With SP1
CPU
3.10 Gig Intel Core i5-3350P
Motherboard
Dell 0NW73C A00
Memory
8192 Megabytes Usable Installed Memory
Monitor(s) Displays
Samsung SyncMaster [Monitor] (19.1"vis, s/n HVELA10194, Octo
Screen Resolution
1024 X 768
Hard Drives
INTEL SSDSA2CW120G3 ATA Device [Hard drive] (120.03 GB)
INTEL SSDSA2CW080G3 ATA Device [Hard drive] (80.02 GB)
Keyboard
HID Keyboard Device (HP)
Mouse
Dell (came with computer)
Internet Speed
cox high speed
Other Info
The above taken with Bel Arc Advisor
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

Computer type
PC/Desktop
Computer Manufacturer/Model Number
Golden Mk. I.4
OS
Windows 10 Pro x64 ; Xubuntu x64
CPU
Intel i7 860 @ 2.80 GHz O/C'ed to 4.0GHz
Motherboard
Gigabyte P55A-UD3R Rev.1. Award BIOS F13
Memory
16GB Corsair Vengance DDR3 @ 661 MHz Dual Channel (9-9-9-24)
Graphics Card(s)
EVGA NVidia GTX 560 1024MB
Sound Card
Realtek Integrated
Monitor(s) Displays
Dual Samsung SyncMaster 2494HS
Screen Resolution
1920*1080 and 1920*1080
Hard Drives
1*Samsung 840 EVO 120GB SSD;
1*OCZ Vertex 2 60GB SSD;
2*Samsung F3 SpinPoint 1TB in RAID0;
1*Samsung F1 SpinPoint 1TB;
2*Western Digital 1TB External USB 3.0
1*Western Digital 500GB External USB 3.0
1*Seagate 500GB External USB 2.0
PSU
Thermaltake ToughPower QFan 750W
Case
Thermaltake Element S VK60001W2Z
Cooling
Corsair H60 Water Cooling, 2*230mm and 2*80mm case fans
Keyboard
Logitech G110
Mouse
Logitech MX518
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

Computer Manufacturer/Model Number
Dell Inspiron
OS
Windows 7
CPU
2.4 GHz Intel i3 cpu
Memory
8GB
Mouse
MS Explorer Mouse
Internet Speed
100 Mb/s
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

Computer type
PC/Desktop
Computer Manufacturer/Model Number
Dell XPS-8500
OS
Windows 7 Home Premium (Retail) Full version - With SP1
CPU
3.10 Gig Intel Core i5-3350P
Motherboard
Dell 0NW73C A00
Memory
8192 Megabytes Usable Installed Memory
Monitor(s) Displays
Samsung SyncMaster [Monitor] (19.1"vis, s/n HVELA10194, Octo
Screen Resolution
1024 X 768
Hard Drives
INTEL SSDSA2CW120G3 ATA Device [Hard drive] (120.03 GB)
INTEL SSDSA2CW080G3 ATA Device [Hard drive] (80.02 GB)
Keyboard
HID Keyboard Device (HP)
Mouse
Dell (came with computer)
Internet Speed
cox high speed
Other Info
The above taken with Bel Arc Advisor
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

Computer type
PC/Desktop
Computer Manufacturer/Model Number
Dell XPS-8500
OS
Windows 7 Home Premium (Retail) Full version - With SP1
CPU
3.10 Gig Intel Core i5-3350P
Motherboard
Dell 0NW73C A00
Memory
8192 Megabytes Usable Installed Memory
Monitor(s) Displays
Samsung SyncMaster [Monitor] (19.1"vis, s/n HVELA10194, Octo
Screen Resolution
1024 X 768
Hard Drives
INTEL SSDSA2CW120G3 ATA Device [Hard drive] (120.03 GB)
INTEL SSDSA2CW080G3 ATA Device [Hard drive] (80.02 GB)
Keyboard
HID Keyboard Device (HP)
Mouse
Dell (came with computer)
Internet Speed
cox high speed
Other Info
The above taken with Bel Arc Advisor
Back
Top