Specifying a Backup Location

Written by Allen Wyatt (last updated August 30, 2019)
This tip applies to Word 97, 2000, 2002, and 2003


Gary asked if it was possible to specify a location for Word to save backup files, if you have the "Always Create Backup Copy" setting turned on. That way he could more easily perform his backups of documents, without copying the backup copy in the backup. (Sounds like a tongue-twister, huh?)

The short answer is no, Word doesn't allow you to do that. The reason is quite simple, really—it has to do with file names. When you turn on the backup feature, Word saves backup files by appending or prepending some special text to your file name. In some versions of Word, the WBK filename extension is used instead of the familiar DOC. In other versions of Word, the DOC extension is used by Word adds the phrase "Backup of" to the beginning of the document name.

Let's say that you have two directories, and in each one you have different documents but each has the same name, as in MyLetter.doc. If you have backups turned on, and Word allows you to specify where the backups are placed, then the names for the backups of the two different files would be the same (either MyLetter.wbk or Backup of MyLetter.doc), and two files with the same name cannot be saved in the same folder. The solution is for Word to simply keep the backup copy of a document in the same folder as the original copy. That way, you don't run into naming conflicts at all.

But what if you are willing to take the risk of naming conflicts and you still want the backup files stored in a different location? In such a case, you are left to your own devices, and you can approach the problem in several different ways.

First, you could use a macro to save the backup for you, rather than relying on the backup feature within Word. The following macro, which is a replacement for the Save command, will save a backup copy of the document in both C:\Backups\ and the current directory.

Sub FileSave()
    Dim docName As Boolean
    Dim templateFullName As String

    docName = ActiveDocument.name Like "Document#*"
    templateFullName = ActiveDocument.FullName
    If docName = True Then
        Dialogs(wdDialogFileSaveAs).Show
    Else
        ActiveDocument.SaveAs FileName:="C:\Backups\" _
          & ActiveDocument.name, AddToRecentFiles:=False
        ActiveDocument.SaveAs FileName:=templateFullName
    End If
End Sub

This macro does not save a backup when you save a file for the first time, only when you do a subsequent save. Saving will, of course, take twice as long as normal, since Word is actually doing two distinct saves. In addition, the macro doesn't use the WBK extension or the "Backup of" phrase on any of the files saved in C:\Backups\. Instead, the files are saved there as regular DOC files.

The second potential solution is to still use Word's backup feature, but periodically move all the backup files to their own directory. You can do that by following these general steps:

  1. Get out of Word.
  2. Open a folder where you want the backup files to reside.
  3. In Windows, start the Find File tool. Depending on your version of Word, this is typically done by choosing Start | Search | For Files or Folders.
  4. Search for *.wbk on the drive where you store your Word documents. This will display a list of all the backup files on the drive.
  5. If no files are returned in step 4, then search for "Backup of*" (without the quote marks) on the drive.
  6. Press Ctrl+A to select all the files that were found.
  7. Using the right mouse button, drag the selected files to the folder you opened in step 2. When you release the mouse button, Windows moves the files from their original folders to the folder you specified.
  8. Close the Search dialog box.

With the backup files in their own folder, you can then do whatever you want with them.

The third possible solution, particularly applicable when making backups, is to use WinZip to only archive files ending in DOC or WBK, as the desire may be.

Note:

If you would like to know how to use the macros described on this page (or on any other page on the WordTips sites), I've prepared a special page that includes helpful information. Click here to open that special page in a new browser tab.

WordTips is your source for cost-effective Microsoft Word training. (Microsoft Word is the most popular word processing software in the world.) This tip (1701) applies to Microsoft Word 97, 2000, 2002, and 2003.

Author Bio

Allen Wyatt

With more than 50 non-fiction books and numerous magazine articles to his credit, Allen Wyatt is an internationally recognized author. He is president of Sharon Parq Associates, a computer and publishing services company. ...

MORE FROM ALLEN

Making Squares

Cells in a worksheet defined by the intersection of rows and columns. If you adjust row height and column width just ...

Discover More

Viewing Your Custom Styles

If you develop a set of preferred styles, you may want to use those styles with a document you receive from someone else. ...

Discover More

Entering Dates in Excel

When you type information into a cell, Excel tries to figure out what type of information you are entering. If Excel can ...

Discover More

Comprehensive VBA Guide Visual Basic for Applications (VBA) is the language used for writing macros in all Office programs. This complete guide shows both professionals and novices how to master VBA in order to customize the entire Office suite for their needs. Check out Mastering VBA for Office 2010 today!

More WordTips (menu)

Removing All File Properties

Want to get rid of any properties you've created for a document? You can do so by using the short macro described in this ...

Discover More

Error Message about WRS File

Error messages in Word can be frustrating. For instance, if you see a message that says something about WRS files, it can ...

Discover More

Determining the Length of a Non-Document Text File

If you use a macro to create and work with text files, you can find out the length of those files using a simple command. ...

Discover More
Subscribe

FREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."

View most recent newsletter.

Comments

If you would like to add an image to your comment (not an avatar, but an image to help in making the point of your comment), include the characters [{fig}] (all 7 characters, in the sequence shown) in your comment text. You’ll be prompted to upload your image when you submit the comment. Maximum image size is 6Mpixels. Images larger than 600px wide or 1000px tall will be reduced. Up to three images may be included in a comment. All images are subject to review. Commenting privileges may be curtailed if inappropriate images are posted.

What is nine more than 7?

There are currently no comments for this tip. (Be the first to leave your comment—just use the simple form above!)


This Site

Got a version of Word that uses the menu interface (Word 97, Word 2000, Word 2002, or Word 2003)? This site is for you! If you use a later version of Word, visit our WordTips site focusing on the ribbon interface.

Videos
Subscribe

FREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."

(Your e-mail address is not shared with anyone, ever.)

View the most recent newsletter.