Every image your camera captures is wrapped in a layer of invisible data recording exactly how that shot was made. EXIF data encodes shutter speed, aperture, ISO, focal length, GPS coordinates, and the precise timestamp, and on Windows you can surface all of it in seconds without installing a single extra application.
Reading EXIF in Windows File Explorer
The fastest route on any Windows PC is built directly into File Explorer. Right-click your JPEG or TIFF, choose Properties, then open the Details tab. You will see grouped fields including Camera, Image, and GPS. Shutter speed appears as a fraction such as 1/250, aperture as f/5.6, and ISO as a plain integer. This view works on JPEG and most processed TIFFs but will not show RAW proprietary data from CR3 or NEF files. If you shoot RAW, you will need a dedicated viewer or converter to extract full metadata.
One thing the Details tab omits is lens data for older lenses that communicate via chipped adapters. If a field shows blank, it means the camera body could not write that value at capture time, not that the data was lost in post.
Using ExifTool for Complete Metadata on Windows
ExifTool by Phil Harvey is the most thorough free option for Windows and reads every proprietary RAW format including CR3, NEF, ARW, ORF, and RW2. Download the Windows executable from the official site, rename it to exiftool.exe, and place it in C:\Windows so it is accessible from any folder. Then open Command Prompt in your photo directory and run exiftool filename.CR3 to dump every tag. For a quick summary of the fields most relevant to exposure, run exiftool -ShutterSpeed -Aperture -ISO -FocalLength -LensModel filename.CR3. To batch-check all files in a folder, use exiftool -csv *.CR3 > results.csv and open the spreadsheet in Excel.
ExifTool also reveals white balance as a Kelvin value rather than the preset label, which is useful when diagnosing a color cast that appeared in a particular batch of shots. If you see ColorTemperature set to 3200K when you thought you were using daylight white balance, you have found your culprit without opening Lightroom.
Viewing EXIF in Adobe Bridge and Lightroom on PC
Adobe Bridge shows a full metadata panel in its lower-left corner whenever you select an image. The EXIF fields are broken into File Properties, IPTC Core, and Camera Data (Exif) subgroups. You can expand Camera Data to see focal length, shutter speed, and metering mode all at once. Bridge also displays a live histogram beside the metadata, which lets you immediately connect a clipped highlight to the ISO or aperture choice that caused it.
In Lightroom Classic on Windows, click any image in the Library module and press the letter I on your keyboard to cycle through three overlay modes. The third mode shows a concise EXIF summary directly on the preview. For deeper inspection, open the Metadata panel on the right side and select EXIF and IPTC from the dropdown. Lightroom also lets you create smart collections filtered by EXIF values, for example all shots taken above ISO 3200, which is a practical way to audit which images need noise reduction.
Free Standalone Tools Worth Knowing
IrfanView is a free image viewer for Windows that shows EXIF data via Image > Information or the keyboard shortcut I. It parses lens profiles and GPS blocks neatly and can display embedded thumbnails separate from the main image. FastStone Image Viewer is another no-cost option that shows metadata in a floating panel alongside the image preview, making it easy to compare settings across a shoot. Both applications open NEF, CR2, ARW, and other RAW formats when the respective camera codec is installed, though they display the embedded JPEG preview rather than a true RAW render. For accurate RAW vs JPEG comparisons, use a proper RAW converter alongside these viewers.
Common mistakes to avoid
- Trusting the File Explorer Details tab for RAW files. It shows partial data at best and silently skips many fields that ExifTool would catch.
- Assuming blank GPS fields mean the feature is unavailable. Most mirrorless and smartphone cameras embed GPS only when the location service is enabled in the menu, not by default.
- Editing EXIF data carelessly. Tools like ExifTool can write as well as read. Accidentally overwriting DateTimeOriginal breaks chronological sort order in every catalog tool permanently.
- Overlooking the LensModel field when troubleshooting sharpness. If a borrowed or third-party lens is not reporting its model correctly, autofocus micro-adjustment profiles will not apply and focus can be systematically front or back focused.
- Using Windows thumbnail previews to judge exposure accuracy. The embedded JPEG preview can be brighter than the actual RAW data, masking blown highlights that the EXIF histogram would reveal.
FAQ
Why does my RAW file show no EXIF in Windows File Explorer? File Explorer relies on Windows Imaging Component codecs. Without the manufacturer’s codec pack installed (Canon, Nikon, and Sony each provide free downloads), Windows cannot decode the RAW file and therefore cannot read its metadata. Install the matching codec and the Details tab will populate normally.
Can I view EXIF data without installing software on a Windows PC? Yes. Right-click the file, choose Properties, and open the Details tab. This works immediately on JPEG files with no additional software required and shows the most commonly needed fields including ISO, aperture, and shutter speed.
How do I check the exact lens used on a shot when the EXIF shows only the focal length? Run ExifTool and look for the LensModel or LensID tag. Most modern lenses with electronic contacts report their full name and serial number there. Older manual lenses with no electronic chip will show no lens data at all, regardless of which viewer you use.