If you shoot film, and later you scan it, especially into formats like DNG, you end up with a file that is poor in metadata. Your scanner software (like VueScan) knows about the scanner perhaps a Plustek 8100 and the scan settings, but it has no idea what camera or lens took the original photo.
This leaves a gap in your digital library.

To fix this, I use ExifTool to add the relevant EXIF tags to the scanned files.

Here is a single command I use to batch-process a directory of DNGs to embed all the correct metadata for a specific camera and lens combination.

 1exiftool -overwrite_original -r -ext dng \
 2-Make="Leica Camera AG" \
 3-Model="LEICA M6" \
 4-SerialNumber="<camera serial number>" \
 5-LensMake="Leica Camera AG" \
 6-LensModel="Summicron-M 1:2/35 ASPH." \
 7-LensID="Summicron-M 1:2/35 ASPH." -LensInfo="35mm f/2" \
 8-FocalLength="35.0 mm" \
 9-Artist="GIOELE MARTELLI" \
10-ProfileName="LEICA M6" \
11.

-overwrite_original is an important flag. By default, ExifTool creates a backup copy of your original file (e.g., file.dng_original) before writing changes. This flag prevents that, modifying the file in-place.
This is a destructive action. I recommend running the command on copies of your files first until you are confident in the results.

The above command is a “master template”. I keep a separate script with variations of this command for my other common combinations.

It’s a simple, one-time step per batch of scans that makes my digital archive infinitely more organized and searchable.