Why Automatic Backups Matter
Hard drives fail. Ransomware encrypts files. Accidental deletions happen. The only reliable defence is a backup you didn't have to remember to create. Windows includes several built-in tools to automate this — and for most home users, they're more than adequate.
This guide covers three approaches, from the simplest to the most robust.
Method 1: Windows File History
File History is Windows' built-in continuous backup feature. It monitors selected folders and automatically saves copies whenever files change. Recovery is straightforward — browse back through versions to restore any file to a previous state.
Setting It Up
- Connect an external drive or point to a network location.
- Go to Settings → System → Storage → Advanced storage settings → Backup options.
- Click Add a drive and select your external drive.
- Toggle Automatically back up my files to On.
- Click More options to set how often backups run and how long versions are kept.
Best for: Documents, photos, and personal files you edit regularly. File History defaults to backing up the Libraries, Desktop, Contacts, and Favourites folders.
Method 2: Windows Backup and Restore (System Image)
For a full system backup — including Windows itself, your installed applications, and all your settings — the older Backup and Restore tool (available in all modern Windows versions) lets you create a complete system image.
Creating a System Image
- Open Control Panel → Backup and Restore (Windows 7) — yes, it's still there and still works in Windows 11.
- Click Create a system image on the left.
- Choose where to save it: external drive, DVDs, or a network location.
- Select which drives to include and click Start backup.
Schedule regular system images — monthly is a reasonable cadence for most users. Keep in mind these are large files (often 20–100 GB), so ensure your target drive has sufficient space.
Method 3: Task Scheduler + Robocopy
For more control, you can combine Windows' built-in Robocopy command with Task Scheduler to create a custom automated backup.
A Simple Robocopy Backup Command
The following command copies all files from your Documents folder to a backup location, mirroring deletions and logging the output:
robocopy "C:\Users\YourName\Documents" "D:\Backup\Documents" /MIR /LOG:D:\Backup\backup_log.txt
Scheduling It
- Save the command in a .bat file.
- Open Task Scheduler and click Create Basic Task.
- Name the task, set a trigger (daily, weekly, etc.), and set the action to run your .bat file.
- Under Conditions, check "Run only if the following network connection is available" if backing up to a network drive.
The 3-2-1 Backup Rule
Whatever method you choose, aim for the industry-standard 3-2-1 rule:
- 3 copies of your data
- 2 different storage media (e.g., internal drive + external drive)
- 1 copy offsite or in the cloud (e.g., OneDrive, Google Drive free tier)
A backup stored only on an external drive sitting next to your PC is vulnerable to the same fire, theft, or flood that could take out your main machine. Offsite or cloud storage covers that gap.
Testing Your Backups
A backup you've never tested is a backup you can't trust. At least once a quarter, pick a random file from your backup and try to restore it. This confirms your backup system is actually working before you desperately need it.