Remove EXIF from Photos on Windows: 3 Methods
Remove EXIF from photos on Windows with Photos or Paint export, ExifTool, or FFmpeg -map_metadata. Share JPEG copies without GPS tags.
You attach event photos to a public post. Readers do not see it, but the JPEG files can still carry GPS, phone model, and exact capture time in EXIF. Strip those tags before publish, client send, or ticket upload when location and device details should stay private.
What EXIF contains
EXIF embeds metadata in JPEG and some TIFF files from cameras and phones.
| Tag type | Example |
|---|---|
| GPS | Latitude and longitude |
| Device | Camera or phone model |
| Date and time | Original capture timestamp |
| Orientation | Rotation flag some apps misread |
| Software | Export app name |
Some social platforms strip EXIF on upload. Email, shared drives, and client portals often deliver the original unchanged. Online EXIF removers receive the full photo on upload; for sensitive shoots, process on your PC. See are online file compressors safe on Windows .
Stripping tags is not the same as compressing pixels. When you also need smaller bytes, see how to compress images on Windows .
Method 1: Remove EXIF in Photos or Paint
Best for: One or a few delivery copies with built-in apps.
Photos (Windows 11):
- Open the photo in Photos.
- … → Save as, or resize and save a copy to a new folder.
Paint:
- Open the photo.
- Save as → JPEG to a new filename (do not overwrite the original).
Right-click the original in File Explorer → Properties → Details to see which tags exist before and after. Keep originals\ with EXIF intact. Publish from redacted\ or web\ only.
Limitation: Export paths can leave some fields. Verify Details before you send.
Method 2: Strip with ExifTool
Best for: Deterministic tag removal without guessing through a lossy re-save.
winget install ExifToolSafer pattern: write to a new directory:
mkdir clean
exiftool -all= -o clean picture.jpgRemove GPS only while keeping other tags:
exiftool -GPS:All= picture.jpgLimitation: You install and learn ExifTool. Prefer this when compliance needs proof of stripping.
Method 3: Batch with ExifTool or FFmpeg
Best for: Event folders and gallery uploads.
mkdir clean
Get-ChildItem *.jpg | ForEach-Object {
exiftool -all= -o "clean\$($_.Name)" $_.FullName
}Combine resize and metadata drop with FFmpeg:
ffmpeg -i picture.jpg -vf scale=1920:-2 -map_metadata -1 -q:v 3 clean\picture.jpg-map_metadata -1 drops metadata in the FFmpeg output. This guide covers exported JPEG delivery copies, not RAW sidecars.
Limitation: Batch to a new folder first. Overwriting originals is faster but risky when legal needs untouched camera files.
Check the result
Review Properties → Details on a sample before and after. GPS latitude and longitude should be blank when full strip is the goal.
| Scenario | Risk if you skip strip |
|---|---|
| Public blog | Home or office location in GPS |
| Client deliverable | Device hints in Software tag |
| Support ticket | Internal office geotag |
When Photos or ExifTool is enough
Photos or Paint can finish a single photo when Details confirms the tags are gone. ExifTool fits folders and compliance checks.
GetCompress does not advertise dedicated EXIF stripping. After tags are removed (or when privacy is less critical than size), use it to resize and compress delivery folders locally. Pair with compress JPG on Windows when byte size and privacy both matter.
- How to Compress Images on WindowsCompress images on Windows with GetCompress, Photos, or FFmpeg. Resize JPG and PNG, convert WebP, and keep sharp UI for email or web.
- Compress JPG on WindowsCompress JPG on Windows with GetCompress, Photos or Paint, or FFmpeg. Resize first, then lower quality for email and upload limits without heavy artifacts.
- Are Online File Compressors Safe on WindowsWhat happens when you upload files to online compressors, and what to use on Windows instead with Photos, Clipchamp, and GetCompress.
- Remove EXIF from Photos on MacRemove EXIF from photos on Mac with Preview export, sips strip flags, or batch Terminal loops. Share JPEG and HEIC copies without GPS tags.