Use PowerToys PowerRename to batch-remove the UTC part from all file names.
- Install and open PowerToys, then enable PowerRename.
- In File Explorer on Windows 11, select the affected files, right‑click, and choose PowerRename.
- In Search for, enter the UTC pattern that appears in the names. For example, if names look like:
-
report_2024-03-01T10-30-00Z.txtuse a search pattern such as: -
2024-03-01T10-30-00Z(literal) or a suitable regex if the pattern varies.
-
- Leave Replace with empty to remove that part from the name.
- Use the preview pane to confirm the new names look correct.
- Click Apply to rename all files at once.
If the UTC stamp is actually the file’s creation date/time and not text in the name, PowerRename can also rebuild names from the file’s creation date/time using the date/time variables like $YYYY, $MM, $DD, $hh, $mm, etc., in the Replace with field. For example, to rename matching files to YYYY-MM-DD_filename.ext based on creation date:
- Search for:
(.*) - Replace with:
$YYYY-$MM-$DD_$1
This uses the file’s creation date/time attributes instead of the UTC text in the current name.
References: