Windows Guide

Hazel for Windows? 5 Alternatives That Actually Work (2026)

Kirill Isachenko
Kirill Isachenko
6 min read
TL;DR: There is no Hazel for Windows. File Juggler is the closest match for rule-based renaming and moving. DropIt is the free option. Zush covers the part Hazel cannot do well: reading each file and giving it a descriptive name. Many people run Zush for naming and File Juggler for moving.
Jump to section

Quick answer: Hazel only runs on macOS, and Noodlesoft does not make a Windows version. The closest Windows match is File Juggler, which watches folders and renames or moves files by rules. If you want files named by what is inside them, not by rules you write, use Zush for Windows.

Hazel does two jobs at once: it decides what a file is, then it does something with it. On Windows those jobs are usually split across two tools, which turns out to be easier to debug.

Last checked: September 22, 2026. Written by the maker of Zush. Details for other tools come from their official sites, linked below.

What Hazel does, and what you need to replace

Hazel watches folders on a Mac and applies rules: if a file matches conditions (name, type, date, contents, source), it renames, moves, tags, archives, or runs a script. It costs $42 one-time.

On Windows, look for the same three pieces:

  1. Folder watching. Something that notices new files in Downloads, Desktop, or a scanner folder.
  2. Conditions. A way to recognize a file, by pattern or by reading it.
  3. Actions. Rename, move, copy, delete, extract.

Rules work well for predictable files: every bank statement has the same sender and layout. They fall apart on messy ones like screenshots, phone photos, and PDFs called document(3).pdf, because there is no pattern to match. That is the gap AI naming fills.

The five alternatives at a glance

ToolClosest to Hazel forReads file contentPrice
File JugglerRules that rename and movePDF text and propertiesAbout $40 one-time, 30-day trial
DropItFree rule-based sortingBasic content filtersFree, open source
ZushNaming files by what they containYes, with AI (images, PDFs, Office, video, audio)50 free renames; $10/mo or $48 one-time
SortioAI folder plans that move filesYes, with AIFree tier; Pro $14.99/mo
PowerShell + Task SchedulerAnything you can scriptWhatever you codeFree

1. File Juggler: the closest Hazel replacement

File Juggler is built for exactly the Hazel workflow. You create a rule with a monitored folder, conditions, and actions. It can rename using PDF properties, match text inside PDFs, move files into dated folders, extract archives, and upload to Evernote.

A license is about $40 one-time and covers one person on several PCs. The 30-day trial has no feature limits.

Pick it if you already think in Hazel rules. Its limit is the same as Hazel’s: if you cannot describe the file with a condition, the rule cannot catch it.

2. DropIt: the free option

DropIt is free and open source. Rules match files by name, size, date, properties, or regex, and 21 actions cover move, copy, rename, compress, extract, and more. You drag files onto a floating target, or let it scan monitored folders on a timer.

The last release (8.5.1) came out in October 2018. It works, but it will not get new features.

Pick it for simple sorting by extension or name pattern when paying is not an option.

3. Zush: the part rules cannot do

Zush handles the files that break rules. It reads each file, including screenshots, scans, photos, Office documents, and video, and writes a descriptive name:

  • Screenshot 2026-09-18 141203.pngstripe-revenue-dashboard-september.png
  • scan_0042.pdf2026-09-12_acme_invoice_1042.pdf
  • IMG_4382.jpg2026-08-30_lisbon_tram_28_street.jpg

Folder monitoring makes it work like a Hazel rule: new files in Downloads or a scanner folder are renamed as they arrive. A Template decides the pattern, so every invoice follows the same date_vendor_invoice_number shape. You can preview names before applying, and Rename History reverts a whole batch later.

Zush does not move files. That is deliberate: renaming keeps paths stable, so OneDrive sync and shortcuts do not break.

4. Sortio: AI that plans folders and moves files

Sortio takes a sentence like “sort invoices by year and screenshots by project”, shows a plan, then renames and moves files. Smart Folders keep applying it to new arrivals. It runs on Windows 10/11, macOS, and Linux.

The free plan includes up to five rules and a one-time AI trial. Pro is $14.99 per month or $99 per year. Ollama and LM Studio keep processing on your PC.

Pick it when you want AI to decide where files go, and you are comfortable reviewing move plans carefully.

5. PowerShell and Task Scheduler: the DIY route

Windows already has the parts: PowerShell can rename and move files, and Task Scheduler can run a script every few minutes or at login. A minimal “move PDFs out of Downloads” script looks like this:

Terminal window
Get-ChildItem "$env:USERPROFILE\Downloads" -Filter *.pdf |
Move-Item -Destination "$env:USERPROFILE\Documents\PDFs"

It is free and endlessly flexible. You also own everything: duplicate names, locked files, logging, and undo. Worth it if you enjoy scripting; otherwise a tool saves the weekend.

A Hazel-style setup on Windows

The combination that covers most of what Hazel users miss:

  1. Zush monitors Downloads and renames each new file by content, using a Template such as {Created Date}_{Vendor}_{Document Type}.
  2. File Juggler watches the same folder and moves files by the now-predictable name: *_invoice.pdf to Finance\Invoices, *_receipt.pdf to Finance\Receipts.

Test with copies first. Once both steps look right, point them at the real folder.

FAQ

Is there a Hazel for Windows?

No. Hazel is macOS-only. File Juggler is the closest Windows equivalent for rule-based renaming and moving, and DropIt is a free alternative.

What is the best free Hazel alternative for Windows?

DropIt is free and open source but has not been updated since 2018. Zush has 50 free AI renames if your main problem is unclear filenames. PowerShell with Task Scheduler is free if you can script.

Can Windows organize files automatically without extra software?

Partly. Storage Sense can delete old files from Downloads, and PowerShell scripts scheduled with Task Scheduler can move or rename files. Neither reads what a file contains. See how to organize files automatically on Windows 11.

Can Zush replace Hazel on Windows?

For naming, yes, and it goes further than Hazel’s pattern renaming because it reads the file. For moving files between folders, no. Pair Zush with File Juggler or a script for that.