Home/Blog/Tutorials/How to Rename Photos by Date Taken on Windows 11 (3 Methods)
TutorialsBeginner12 min read

How to Rename Photos by Date Taken on Windows 11 (3 Methods)

Renomee Team

Published on September 7, 2026

How to Rename Photos by Date Taken on Windows 11 (3 Methods)

Quick answer: Windows 11 cannot rename photos by date taken on its own — File Explorer sorts by Date Taken but does not write it into the filename. Use PowerToys PowerRename (free, variable-based), Bulk Rename Utility (free, most format control), or Renomee (plain-English rules, handles HEIC/RAW/conditional logic). All three read EXIF Date Taken directly from the photo file.

You import photos from a trip and end up with DSC_0001.jpg, IMG_3847.jpg, and 20260904_114523.jpg mixed together, sorted by nothing useful. The capture date is already inside each photo — stored in EXIF metadata by the camera. The challenge is getting that date into the filename so any file browser, backup tool, or search engine can sort them correctly.

This guide covers three free methods, ordered from lightest to most full-featured, plus a section on advanced naming patterns that go beyond a simple date stamp.


Choose Your Method: Quick Comparison

MethodToolDifficultyEXIF SupportBest For
PowerToys PowerRenamePowerToys (free)★★☆☆☆Lightweight, variable patterns
Bulk Rename UtilityBRU (free)★★★★☆Fine-grained format control
RenomeeRenomee (free trial)★☆☆☆☆Mixed formats, complex rules, undo

What Is EXIF Date Taken?

EXIF Date Taken (stored as DateTimeOriginal in EXIF tag 36867) is a timestamp written by the camera at the exact moment of capture. It never changes — not when you copy the file, move it to a new drive, or share it via email.

Windows tracks two other timestamps that are unreliable for photo organization:

TimestampSet byResets when
EXIF Date TakenCamera hardwareNever
Date ModifiedOperating systemFile is copied, moved, or edited
Date CreatedOperating systemFile is copied to a new location

The most common mistake in photo organization is renaming by Date Modified. The result looks correct — until you copy the folder to a new drive, at which point Date Created becomes today and Date Modified may reset. EXIF Date Taken is the only reliable source.


Method 1: PowerToys PowerRename ★★☆☆☆

PowerRename is part of Microsoft PowerToys, a free official Microsoft utility. It integrates into the File Explorer right-click menu and natively supports EXIF metadata variables.

Install PowerToys

Search PowerToys in the Microsoft Store, or download from the PowerToys GitHub releases page. Free and open-source.

Rename Photos by EXIF Date Taken

Step 1. Select all photos in File Explorer (Ctrl + A) → right-click → PowerRename.

Step 2. Click the combobox next to Replace with and switch from default to EXIF/MDF.

Step 3. Enter your date pattern using EXIF variables:

$DATE_TAKEN_YYYY-$DATE_TAKEN_MM-$DATE_TAKEN_DD_$DATE_TAKEN_HH$DATE_TAKEN_mm$DATE_TAKEN_SS

Step 4. Confirm the live preview shows timestamps like 2024-03-15_143022.jpg.

Step 5. Click Rename.

EXIF Variable Reference

VariableMeaningExample
$DATE_TAKEN_YYYYYear (4 digits)2024
$DATE_TAKEN_YYYear (2 digits)24
$DATE_TAKEN_MMMonth03
$DATE_TAKEN_DDDay15
$DATE_TAKEN_HHHour (24h)14
$DATE_TAKEN_mmMinute30
$DATE_TAKEN_SSSecond22
$CAMERA_MODELCamera model nameCanon EOS R5
$CAMERA_MAKECamera manufacturerCanon

Common Patterns for PowerRename

# Date only
$DATE_TAKEN_YYYY-$DATE_TAKEN_MM-$DATE_TAKEN_DD

# Year-Month prefix only (monthly album sorting)
$DATE_TAKEN_YYYY-$DATE_TAKEN_MM

# Date + time (prevents conflicts in burst shots)
$DATE_TAKEN_YYYY-$DATE_TAKEN_MM-$DATE_TAKEN_DD_$DATE_TAKEN_HH$DATE_TAKEN_mm$DATE_TAKEN_SS

# Date + camera model (multi-camera shoots)
$DATE_TAKEN_YYYY-$DATE_TAKEN_MM-$DATE_TAKEN_DD_$CAMERA_MODEL

# Date prefix, keep original filename (requires Use Regex ON + capture group)
$DATE_TAKEN_YYYY-$DATE_TAKEN_MM-$DATE_TAKEN_DD_$1

Limitation: PowerRename cannot apply conditional logic — for example, "use EXIF date if available, otherwise use modified date and add a suffix." All files in the selection get the same pattern applied.


Method 2: Bulk Rename Utility ★★★★☆

Bulk Rename Utility is a long-established free Windows tool with a denser UI than PowerRename but more granular control over date formats, separators, and numbering.

Install

Download from the official site. Free for personal use.

Enable EXIF Extraction

Step 1. Open BRU, navigate to your photos folder via the left panel, and select your files.

Step 2. Top menu → Renaming Options → ID3 / Exif Data / File Properties → Extract Exif Data (Photos). The Taken (Original) column populates. ✅

Configure Date Rename

Step 3. In the Auto Date (8) section, set Mode to Prefix.

Step 4. Set Type to Taken (Original).

Step 5. Set Fmt to YMD. Check Cent (4-digit year).

Step 6. Set separators:

  • Sep = _ (between date and original filename)
  • Seg = - (between year, month, day)

Step 7. Confirm preview shows 2024-03-15_DSC_0001.jpg → click Rename.

Custom Date Formats

Use the Custom field for precise control:

# Date + time to the second
%Y-%m-%d_%H%M%S

# Year-Month only
%Y-%m

# Year only
%Y

Limitation: Bulk Rename Utility cannot combine EXIF date with EXIF camera model in a single rename pass. It also has no undo — always test on a small batch first.


Method 3: Renomee ★☆☆☆☆

Renomee replaces variable configuration with plain-English rules. Describe what you want — Renomee reads the EXIF, builds the rename plan, shows a full preview, and executes. Every operation is logged with one-click undo.

Basic Steps

Step 1. Drag your photo folder into Renomee, or right-click photos in File Explorer → Open with Renomee.

Step 2. Type your rule. For example:

Rename all photos using EXIF date taken, format: YYYY-MM-DD_HHMMSS

Step 3. Review the preview — conflicts are flagged before execution.

Step 4. Click Execute. Undo anytime from the history panel.

Advanced Rules That Only Renomee Can Handle

This is where Renomee separates from PowerRename and Bulk Rename Utility. Both tools apply a single fixed pattern to every file. Renomee understands conditions, fallbacks, and combinations:

1. Date + camera model (multi-camera shoots)

Rename using EXIF date taken, then append the camera model.
Format: YYYY-MM-DD_HHMMSS_CameraModel

Result: 2024-03-15_143022_Canon-EOS-R5.jpg

2. Conditional fallback (no EXIF = use modified date + flag)

If the photo has EXIF date taken, use it.
If not, use the file's modified date and add _NO-EXIF to the filename.

Result: 2024-03-15_143022.jpg for camera photos, 2024-03-15_screenshot_NO-EXIF.jpg for screenshots

3. Year-Month prefix + sequential counter within each month

Group photos by year and month. Within each month, add a sequential number.
Format: YYYY-MM_001, YYYY-MM_002...

Result: 2024-03_001.jpg, 2024-03_002.jpg, 2024-04_001.jpg

4. Skip screenshots, rename only camera photos

Rename all photos by EXIF date taken.
Skip any file whose original name contains "Screenshot".

5. Combine date with original filename (keep reference)

Add the EXIF date as a prefix, keep the original filename.
Format: YYYY-MM-DD_OriginalName

Result: 2024-03-15_DSC_0001.jpg

6. Multi-camera merge: sort across devices by actual capture time

These photos come from two cameras with different clocks.
Sort all files by EXIF date taken across the full batch,
then rename sequentially: Trip_001, Trip_002...

Result: Photos from both cameras interleaved in true chronological order — impossible to do reliably with PowerRename or BRU.


Advanced Date Naming Patterns

Beyond the basic YYYY-MM-DD, there are several naming strategies worth knowing:

Pattern Reference Table

GoalPatternExample Result
Sort by year onlyYYYY2024_DSC_0001.jpg
Monthly album sortingYYYY-MM2024-03_DSC_0001.jpg
Daily grouping (no time)YYYY-MM-DD2024-03-15_DSC_0001.jpg
Prevent burst conflictsYYYY-MM-DD_HHMMSS2024-03-15_143022.jpg
Date + camera (multi-device)YYYY-MM-DD_CameraModel2024-03-15_CanonR5.jpg
Keep original nameYYYY-MM-DD_OriginalName2024-03-15_DSC_0001.jpg
Travel prefixTripName_YYYY-MM-DDJapan_2024-03-15.jpg

Choosing the Right Granularity

  • Year only — useful for archive folders where the folder name already contains the month
  • Year-Month — good for photographers who deliver monthly wedding galleries
  • Date + time (recommended default) — the only format that survives burst shooting without conflicts
  • Date + camera model — essential when merging photos from two cameras shot simultaneously (e.g., main camera + second shooter)

What If Photos Have No EXIF Date Taken?

Screenshots, images forwarded via WhatsApp or WeChat, and scanned photos often lack the EXIF DateTimeOriginal field.

ToolFallback Option
PowerRenameSwitch variables from $DATE_TAKEN_* to $YYYY-$MM-$DD (reads file system date)
Bulk Rename UtilityChange Auto Date Type from Taken (Original) to Modified
RenomeeAdd to your rule: "if no EXIF, use file modified date" — can also append a suffix to flag these files

Accuracy caveat: file system dates reset on copy. If the files have been moved between drives, the fallback date may be today's date rather than the original capture date. Renomee is the only tool that can append a visible flag (_NO-EXIF) so you can identify which files used the fallback.


Best Filename Formats for Long-Term Use

FormatExampleVerdict
YYYY-MM-DD_HHMMSS2024-03-15_143022.jpg✅✅ Best — sorts chronologically everywhere, second precision eliminates burst conflicts
YYYY-MM-DD2024-03-15.jpg✅ Fine for low-volume shoots
YYYYMMDD_HHMMSS20240315_143022.jpg✅ Works, slightly harder to read
MM-DD-YYYY03-15-2024.jpg❌ Alphabetical sort ≠ chronological

File system safety rules:

  • Year first — alphabetical sort = chronological everywhere
  • Use - and _ as separators — safe on Windows, macOS, and Linux
  • Avoid / : * ? " < > | — Windows does not allow these in filenames

FAQ

Can Windows 11 rename photos by date taken without extra tools?

No. Windows 11 File Explorer can display a Date Taken column and sort by it, but it does not write that date into the filename. You need PowerToys PowerRename, Bulk Rename Utility, or Renomee to read EXIF and embed the date into each filename.

Does renaming photos change the EXIF data inside?

No. Renaming modifies only the filename — a piece of filesystem metadata that lives outside the photo file. Every EXIF field inside the photo, including Date Taken, GPS coordinates, camera model, ISO, and aperture values, stays completely untouched.

What is the difference between EXIF Date Taken and Date Modified?

EXIF Date Taken is written by the camera at capture and never changes. Date Modified is maintained by the operating system and resets whenever you copy, move, or edit the file. For photo organization, always use EXIF Date Taken — Date Modified is unreliable after any file transfer.

What if two photos were taken at the same second?

PowerRename appends -1, -2 automatically. Bulk Rename Utility adds a numeric suffix. Renomee detects all conflicts in the preview before applying any changes and resolves them automatically.

Does this work with iPhone HEIC files or RAW formats (CR2, NEF, ARW)?

Yes. PowerRename and Bulk Rename Utility support common RAW formats. Renomee processes JPG, HEIC, PNG, and RAW in a single mixed batch without separate steps.

Can I rename photos with both the date and camera model?

Yes, if the tool supports it. PowerRename supports $CAMERA_MODEL alongside $DATE_TAKEN_* variables. Bulk Rename Utility cannot combine these in one pass. Renomee handles this in plain English — type the rule and it extracts both fields from EXIF automatically.


Summary: Which Method Should You Use?

Your situationBest method
Simple date rename, comfortable with variable syntaxPowerToys PowerRename ★★☆☆☆
Need full control over separators and formatBulk Rename Utility ★★★★☆
Mixed JPG + HEIC + RAW in one batchRenomee ★☆☆☆☆
Need one-click undo after renameRenomee ★☆☆☆☆
Conditional logic (fallback, skip files, camera model)Renomee ★☆☆☆☆
Merging photos from multiple cameras in true time orderRenomee ★☆☆☆☆

All three methods leave your photo data intact. Only the filename changes.


Further Reading

Tags

#rename photos by date taken#Windows 11 photo rename#EXIF date rename#batch rename photos#PowerToys PowerRename#Bulk Rename Utility

About the Author

The Renomee team is dedicated to providing users with the best file management solutions, sharing practical tips and in-depth technical articles.