Spotlight problems
Spotlight's index is per-volume. Eject a drive and everything it knew about that drive is gone from search — not archived, gone. For anyone with an archive disk or a backup drive, that is the single most frustrating thing about macOS search.
Every mounted volume gets its own index store, kept on the volume itself in a hidden .Spotlight-V100 folder. Unmount the volume and the store goes with it. Spotlight has no memory of drives that are not currently attached, by design.
This is defensible engineering and terrible ergonomics. The question people actually ask — *"was that project on the Samsung drive or the LaCie?"* — is unanswerable without plugging both in and searching each.
mdutil -s /Volumes/YourDriveName
If it reports indexing disabled, enable it:
sudo mdutil -i on /Volumes/YourDriveName
And if results are still wrong, rebuild that volume specifically:
sudo mdutil -E /Volumes/YourDriveName
the metadata support Spotlight relies on. Indexing is unreliable at best. APFS or Mac OS Extended index properly.
NTFS drives mounted read-only cannot be indexed.
Privacy. Drives get added there by accident.
and most consumer NAS boxes do not.
macOS cannot do this. The honest workaround people use is to keep a text catalogue: mount the drive, run something like
find /Volumes/Archive -type f > ~/Documents/archive-catalogue.txt
and then search that text file later. It works, and it is exactly as tedious as it sounds.
The alternative is an index that keeps records for volumes after they are unmounted and marks them unavailable rather than deleting them, so the drive's contents stay searchable and each result tells you which disk to go and fetch. That is how Everywhere handles it — an unplugged drive's files still appear, dimmed, labelled with the volume they live on.
Most often the format. exFAT and FAT32 lack the metadata Spotlight needs; APFS and Mac OS Extended (HFS+) index reliably.
Yes — sudo mdutil -i off /Volumes/Name, or add the drive to the Spotlight Privacy list in System Settings.
Backups are excluded from normal Spotlight results deliberately, which is why you cannot search your Time Machine disk like an ordinary volume.
Everywhere keeps track of every file on your Mac — including the folders Spotlight hides and drives you have unplugged. Free for a day, then $19 once.
Download for Mac