Oops, I messed up the restart the service code. It should be:
net start "Microsoft Exchange Information Store"
Main Topics
Browse All TopicsHello everyone!
We need to create a Batch File to Copy the Stores to to one of our network storage servers every 7 Days
-Example-
sat.bat Run Every Saturday at 1AM
======
service dismount Store
Copy priv1.edb priv1.stm pub1.edb pub1.stm to \\networkserver
mount store
Done
I believe everythings pretty straight forward except the dismount and remount of the info store. Can someone help me with a bat file that acheives this? Thanks a ton!
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
As @Mestha says, you still need to do a backup using an Exchange aware backup program. The reason being that Exchange creates log files in case anything goes wrong. These log files would allow you to restore an old Exchange database and then roll forward using the transaction logs. When you do a backup, these log files are removed as they are no longer needed. If you don't do a backup, then these log files keep accumulating and will eventually fill your disk.
An option for an Exchange aware backup is NTBackup (comes as part of Windows). You would be better off to schedure it to run every week and it can save it's backup to a directory on your network server.
The raw files are close to useless. As soon as new data comes in you will be unable to use them. Exchange is designed to be managed in a certain way, and that includes leaving it running 24/7 and backing it up with an Exchange aware application. Copying of the files is not something it is designed to do.
Simon.
Business Accounts
Answer for Membership
by: GregdoPosted on 2009-05-06 at 10:50:04ID: 24317596
The following works with MS Exchange Server 2003
Stop the information store:
net stop "Microsoft Exchange Information Store"
Start the information store:
net stop "Microsoft Exchange Information Store"
Just in case you're interested, you can stop other services as well:
net stop "Microsoft Exchange Information Store"
net stop "Microsoft Exchange MTA Stacks"
net stop "Microsoft Exchange Management"
net stop "Microsoft Exchange System Attendant"