How to Schedule Auto-Backup of Word Documents
🔍 WiseChecker

How to Schedule Auto-Backup of Word Documents

You want Word to automatically save backup copies of your documents so you never lose work due to a crash or accidental closure. Word includes a built-in feature that creates a backup copy each time you save, but it does not offer a native scheduler for recurring backups at set times. This article explains how to enable Word’s automatic backup option, how to use Windows Task Scheduler to run backups on a schedule, and how to combine Word with cloud storage for continuous version history.

Key Takeaways: Automating Word Document Backups

  • File > Options > Save > Always create backup copy: Makes Word save a .wbk file each time you save the document, providing a fallback version.
  • Windows Task Scheduler > Create Basic Task: Lets you run a script or command at a specific time each day or week to copy your .docx files to a backup folder.
  • Save documents to OneDrive or SharePoint: Delivers automatic version history and file recovery without manual scheduling.

ADVERTISEMENT

Understanding Word’s Backup Feature and Your Scheduling Options

Word has a built-in setting called “Always create backup copy” that creates a backup file with a .wbk extension every time you save the current document. This backup is placed in the same folder as the original file. The .wbk file contains the previous version of the document, so if you save changes you later regret, you can open the .wbk file to restore the earlier state. This feature works per document and is not a scheduled backup system. It protects against accidental overwrites but not against hard drive failure or deletion because the backup resides in the same location.

To get scheduled backups that run automatically at a specific time each day or week, you need to combine Word’s save behavior with a scheduling tool. Windows Task Scheduler can run a script that copies your .docx files from your working folder to a backup folder on a different drive or network location. You can also use cloud storage services such as OneDrive or SharePoint, which save every change automatically and keep a version history for up to 30 days (or longer with a Microsoft 365 subscription).

Before you start scheduling, decide where you want the backups stored. An external drive, a network folder, or a cloud folder are the safest options because they are separate from your main working drive. You also need to know the exact file path to your Word documents and the path to your backup destination.

Enable Word’s Built-In Backup Copy Setting

This step turns on the automatic backup copy feature for all future saves. It does not schedule backups, but it ensures you always have a previous version of each document.

  1. Open Word Options
    Click File in the top-left corner, then click Options at the bottom of the left pane. The Word Options dialog opens.
  2. Navigate to the Save category
    In the Word Options dialog, click Save on the left sidebar.
  3. Enable the backup copy option
    Scroll down to the section labeled “Preserve fidelity when sharing this document” and check the box next to Always create backup copy. Click OK to save the setting.

Now, every time you save a document with Ctrl+S or by clicking the Save icon, Word creates a backup file with the same name but a .wbk extension in the same folder. To restore from a backup, open the .wbk file in Word and save it as a .docx file.

ADVERTISEMENT

Schedule a Backup Script Using Windows Task Scheduler

This method uses a simple script that copies your Word documents from a source folder to a backup folder at a time you specify. You need to create the script first, then set up the task in Task Scheduler.

Create a PowerShell Script to Copy Word Documents

  1. Open Notepad
    Press Windows Key + R, type notepad, and press Enter. A blank Notepad window opens.
  2. Write the copy script
    Copy and paste the following lines into Notepad. Replace C:\Users\YourName\Documents with the path to your Word documents folder and D:\WordBackups with the path to your backup destination.

    $source = "C:\Users\YourName\Documents"
    $destination = "D:\WordBackups"
    Copy-Item -Path $source\docx -Destination $destination -Recurse -Force
    Copy-Item -Path $source\doc -Destination $destination -Recurse -Force

  3. Save the script
    Click File > Save As. In the Save As dialog, set “Save as type” to All Files. Name the file BackupWordDocs.ps1. Choose a location such as C:\Scripts. Click Save.

Create a Scheduled Task to Run the Script

  1. Open Task Scheduler
    Press Windows Key + R, type taskschd.msc, and press Enter. Task Scheduler opens.
  2. Create a new task
    In the right pane under Actions, click Create Basic Task. The Create Basic Task Wizard opens.
  3. Name the task
    In the Name field, type Word Document Backup. Optionally add a description. Click Next.
  4. Set the trigger
    Select the frequency you want: Daily, Weekly, or Monthly. Click Next. Then set the start time and recurrence interval. For example, every day at 12:00 PM. Click Next.
  5. Set the action
    Select Start a program. Click Next. In the Program/script box, type powershell.exe. In the Add arguments box, type -ExecutionPolicy Bypass -File “C:\Scripts\BackupWordDocs.ps1”. Click Next.
  6. Finish the wizard
    Review the summary and click Finish. The task appears in the Task Scheduler Library. It will run automatically at the scheduled time.

To test the task, right-click it in the library and click Run. Check your backup destination folder to confirm the files were copied.

Use OneDrive or SharePoint for Automatic Version History

If you save your Word documents to OneDrive or SharePoint, these services automatically save every change you make and keep a version history. You do not need to schedule anything. This method provides continuous backup without any setup beyond saving your files to the cloud folder.

  1. Save your document to OneDrive
    In Word, click File > Save As. Choose OneDrive from the list of locations. Select a folder and click Save.
  2. Check version history
    Open the document in Word. Click the file name at the top of the window. Select Version History from the dropdown. A pane opens showing all saved versions with timestamps.
  3. Restore a previous version
    In the Version History pane, click the three dots next to the version you want and choose Restore. Word replaces the current document with that version.

OneDrive retains version history for 30 days for free accounts and up to 100 days for Microsoft 365 subscribers. SharePoint retains versions indefinitely by default, though an administrator can set a limit.

Common Mistakes and Limitations When Scheduling Backups

The Task Scheduler script does not run

If the scheduled task fails, check that the PowerShell execution policy allows scripts. Open PowerShell as administrator and run Set-ExecutionPolicy RemoteSigned. Also verify that the paths in the script use double backslashes or forward slashes. Ensure the backup destination folder exists before the task runs.

Word’s backup copy feature creates .wbk files you cannot find

The .wbk file is hidden by default in File Explorer. To see it, open File Explorer, click the View menu, and check the box for Hidden items. The .wbk file appears in the same folder as the original .docx file with the same name but a .wbk extension.

Cloud storage version history does not protect against accidental deletion

If you delete a file from OneDrive or SharePoint, it goes to the recycle bin. The recycle bin retains deleted files for 30 days on OneDrive and 93 days on SharePoint. To restore, go to the recycle bin in the web interface and select Restore. For permanent protection, combine cloud storage with a local scheduled backup script.

Word Backup Methods Compared

Feature Word Backup Copy (.wbk) Windows Task Scheduler + Script OneDrive / SharePoint
Automation On every save Scheduled time (daily, weekly) Real-time on each edit
Backup location Same folder as original Any folder or drive you specify Cloud server
Recovery method Open .wbk in Word Copy .docx from backup folder Version History in Word or web
Protects against hard drive failure No Yes, if backup is on another drive Yes
Requires manual setup One-time setting in Word Script creation and Task Scheduler Save to cloud once

You can now enable Word’s backup copy feature, schedule a PowerShell script through Task Scheduler, or use cloud storage for automatic version history. Start with the built-in backup copy for immediate protection, then add a scheduled script if you need off-site copies. For the most reliable setup, combine the Word backup copy with OneDrive version history so you have both local and cloud backups.

ADVERTISEMENT