TweakTown’s July 19 report confirms what veteran Windows users have known for nearly two decades: Voidtools Everything finds files by name almost instantly, while Windows 11’s own search often leaves users drumming their fingers.

Everything isn’t new. It’s a freeware utility that first appeared in 2008 and remains actively maintained. Yet every few years, a fresh wave of Windows users discovers it when frustration with built-in search peaks. The timing this time aligns with Windows 11’s maturation—more users are running the OS on older hardware where every background process counts, and the operating system’s indexing service demands resources that could be spent elsewhere.

What’s happening: a filename finder that ignores the heavy lifting

Everything works by going straight to the source. It reads the Master File Table (MFT) on NTFS volumes and builds an in-memory database of every file and folder name. Then it monitors the NTFS USN Change Journal to update that database in real time as files are created, renamed, or deleted.

This means Everything doesn’t need to crawl your disk or reopen files. When you type a search term, it simply filters its already-built list. Voidtools states that a fresh Windows 11 install with about 250,000 files indexes in roughly five seconds. A disk with a million files takes about a minute. Once the index exists, queries are near-instant.

By contrast, Windows Search attempts something far broader. Its indexer—the gatherer—queues URLs for every item in the crawl scope, then uses protocol handlers and filters to pull metadata and full-text content from files. It needs to open file streams, extract text, recognize property values, and update multiple internal indices. Microsoft documents three stages: queuing, crawling, and updating the index. That architecture supports rich queries across file properties and content, but it comes at a speed cost for the simplest task: finding a file by its name.

Everything does precisely one job and stays out of the way. It does not index file contents unless you explicitly ask it to with the content: operator—and even then it must read the file on the fly, which is slow. The utility is purpose-built for filenames, extensions, paths, and basic metadata like size and date modified.

What it means for you

The practical impact splits cleanly along user profiles.

Home users who just want to locate a document, photo, or download quickly will find Everything transformational. The default Windows Search box in File Explorer often pauses to think, then returns results that can include web suggestions or other noise. Everything returns the moment you type. If you remember part of a filename—say, “budget” or “invoice”—you’ll have your result before Windows finishes loading its search pane.

Power users and developers benefit from the advanced syntax. Everything supports wildcards, Boolean operators, and a rich set of filters: ext:pdf size:>50mb will list every PDF larger than 50 MB. datemodified:thisweek narrows to recent work. These queries execute in real time against the filename index, no waiting. The tool also integrates with the shell: you can right-click results to open paths, copy full names, or even launch a command prompt.

IT professionals and managed environments will care about the security model. Everything needs low-level volume access, which typically requires administrator rights. Voidtools recommends installing the Everything service. The service runs with SYSTEM privileges and handles the NTFS access; the desktop client then connects to it as a standard user. This avoids the risk of launching the entire application as administrator, which would cause files opened from Everything to inherit elevated privileges and could break mapped drive visibility. Group Policy can push the service installer and client, and settings can be locked via the Everything.ini configuration file.

Crucially, Everything is not a drop-in replacement for Windows Search, nor does it claim to be. Windows Search remains the right tool for content-based queries (“find that email where I wrote about Q4 projections”), Outlook integration, and Cortana or Start menu search. Users should keep Windows Search enabled for those functions. Think of Everything as the fast lane for filenames and folders only.

Windows Search evolved from the old Indexing Service in Windows 2000, redesigned in Windows Vista to handle email, documents, photos, and music in a unified way. Microsoft’s documentation describes it as a platform that third-party developers can extend with custom protocol handlers and filters. That extensibility is powerful—it’s why Outlook mailboxes can be indexed locally, and why file contents in PDFs, Office documents, and even some CAD formats are searchable.

But that power demands a heavy process. The gatherer must crawl the filesystem, open each file, determine its type, load the appropriate IFilter, extract text and properties, and merge the results into the SystemIndex. A default crawl scope includes libraries like Documents, Music, Pictures, and Videos. On a busy system with mechanical storage, the indexing can take hours. Even on SSDs, the sheer volume of work means search responsiveness can feel sluggish when the indexer is active.

Everything’s approach traces back to a much older idea: the locate command on Unix systems. By reading only directory structures, you sacrifice content search but gain blistering speed. David Carpenter, Voidtools’ developer, built Everything to fill that gap on Windows. Because NTFS stores filenames in the MFT, and the USN Journal provides a change feed, Everything can stay perfectly synchronized without ever scanning the disk after the initial index build.

This design is so efficient that disk I/O is minimal. Everything typically uses less than 100 MB of RAM even with millions of files indexed—far less than a modern web browser.

What to do now

If filename search friction is slowing you down, installing Everything takes less than five minutes:

  1. Download the installer or portable version from voidtools.com.
  2. During installation, select Install Everything service. This is checked by default in recent versions. Do not deselect it unless you have a specific reason to run the client as an administrator each time.
  3. Launch Everything. It will build its initial index immediately. On most systems, this completes before you can type your first query.
  4. Optionally, set Everything to start with Windows—the option is in Tools > Options > General.

After installation, customize the interface: enable the filter bar (View > Filters) for quick toggles between Audio, Compressed, Document, etc. Learn the keyboard shortcuts: Ctrl+N for a new search window, Ctrl+B to toggle search syntax.

For network folders or non-NTFS volumes, Everything will use folder indexing. That fallback is slower and depends on the underlying connection. Add these under Tools > Options > Indexes > Folders. You can also add specific folders on NTFS drives that you want to include if they fall outside your usual mounted volumes.

Power users should explore the advanced search syntax:

Operator/Filter Example Matches
ext: ext:log All files with .log extension
size: size:>1gb Files larger than 1 GB
datecreated: datecreated:today Files created today
datemodified: datemodified:lastweek Files modified in the last 7 days
parent: parent:"C:\Projects" Files inside C:\Projects
content: content:"quarterly report" Files containing the phrase (slow)

Remember: content: searches are not indexed. Use them sparingly, and only when you cannot remember the filename at all. For those jobs, fall back to File Explorer’s search box, which uses Windows Search’s full-text index.

What’s next

Windows Search is not standing still. With each release, Microsoft improves indexing performance and reliability. Windows 11 24H2 introduced tweaks to reduce background resource consumption, and future updates may narrow the gap for simple filename queries. But the fundamental architectural difference—a general-purpose content indexer versus a specialized filename database—means Everything will likely remain the faster tool for its niche.

Everything itself rolls out updates periodically; recent builds have added dark mode support, improved Unicode filename handling, and refined the API for third-party launchers. The tool’s longevity and minimal dependencies suggest it will outlast many current search alternatives.

For Windows users who’ve accepted slow file finding as a fact of life, Everything is a free, lightweight, and secure correction. It doesn’t replace Windows Search. It just makes you wonder why you waited so long to install it.