In this article
- Quick Answer
- My Selection Criteria
- #1 PowerToys — The MVP That Replaces 4 Paid Apps
- #2 Todoist — Quick Capture Without Breaking Flow
- #3 Obsidian — My Second Brain
- #4 AutoHotKey — Automate the Boring Stuff
- #5 ShareX — Screenshots That Put Snagit to Shame
- #6 Everything Search — Find Any File in Under 1 Second
- #7 Flow Launcher — Raycast for Windows
- Apps I Ditched
- Total Cost of My Stack
I've been on Windows for work since 2019. Tried macOS for a year in 2022, came back. Not because Windows is better at everything — it's not — but because the free productivity app ecosystem on Windows is genuinely incredible. After testing 30+ apps over 6 months, these 7 earned permanent taskbar pins. My total cost? Basically $0. That's not a typo. Here's the full stack and why each tool stuck.
Quick Answer
If you're short on time: install PowerToys (free, Microsoft), Everything Search (free), and Flow Launcher (free). Those three alone transform how you use Windows. They handle window management, instant file search, and a Spotlight/Raycast-style launcher. Total setup time: about 10 minutes. Total cost: $0.
If you want the full productivity stack, add Todoist for task capture, Obsidian for notes, AutoHotKey for automation, and ShareX for screenshots. Still mostly free. The entire list below costs $5/month if you want Todoist Pro — everything else is genuinely free software.
My Selection Criteria
An app earns taskbar space only if I use it more than 5 times per day for at least 2 months straight. If I go a week without touching it, it's gone. I'm ruthless about this because Windows 11's taskbar is already cramped with system icons.
Speed matters more than features. If an app takes longer than 1.5 seconds to respond after I hit its shortcut, it loses to a faster competitor. I don't care how pretty the UI is. I care about milliseconds. My workday has about 200 tiny interactions with these tools — those milliseconds compound into real minutes.
I also weight memory usage. My work laptop has 16GB RAM. Between Chrome (the memory pig), VS Code, and Slack, I'm at 10GB before any productivity tools load. An app that idles at 500MB is a non-starter. Everything on this list uses under 100MB idle. Most use under 30MB.
PowerToys — The MVP That Replaces 4 Paid Apps
PowerToys is the single best thing Microsoft has done for Windows power users in the last decade. It's free. It's open source. And it replaces what Mac users pay $5-50 per app to get: window management (FancyZones), an app launcher (PowerToys Run), bulk file rename (PowerRename), a color picker, an image resizer, and about 15 other utilities.
FancyZones is the killer feature. You define custom window layouts — I use a 3-column setup on my 27-inch monitor — then hold Shift while dragging a window to snap it into zones. It's better than Windows 11's built-in snap layouts because you create exactly the zones you want. My layout: browser left 60%, notes top-right 40%, terminal bottom-right 40%. Muscle memory takes over after a week.
PowerToys Run (Alt+Space by default) is a fast app launcher with calculator, unit conversion, file search, and web search built in. It's not as extensible as Flow Launcher or Raycast, but for quick math and opening apps it's instant. I use it 15-20 times per day just for calculations while working in spreadsheets.
PowerRename saved me 3 hours last month when I needed to rename 400+ screenshot files with date prefixes. Regex-powered batch rename with a live preview of every change before you commit. On Mac I'd need a $20 app like Renamer for this. On Windows it's built into PowerToys.
The Mac equivalents: Rectangle ($0-8) + Alfred/Raycast ($0-$50/year) + A Better Finder Rename ($20) + System Color Picker + Image Resizer. That's 4-5 separate installs. PowerToys gives you all of them in one package that auto-updates through the Microsoft Store.
Todoist — Quick Capture Without Breaking Flow
Todoist is the only paid app on this list, and even then the free tier covers most people. I pay $5/month for Pro because I need reminders and filters. The global shortcut (Ctrl+Shift+A) opens a quick-add box from anywhere — any app, any context — and I type a task in natural language. "Review budget doc Friday 3pm #work p2" creates a priority-2 task in my work project due Friday at 3pm. Takes 3 seconds.
I capture 15-20 tasks per day this way. The inbox processes during my morning review. Without quick capture, those tasks live in my head and create low-grade anxiety. With it, my brain offloads instantly and I stay focused on what I'm doing right now.
Why not Microsoft To Do? I tried it for 4 months. The natural language parsing is worse, the global shortcut is clunky, and it can't handle nested projects well. For simple grocery lists it's fine. For managing 50+ active tasks across 8 projects, Todoist's filtering is miles ahead.
The Todoist Windows app is a web wrapper though. Not native. It shows — startup takes 3-4 seconds from cold, vs instant for a native app. I work around this by keeping it in the system tray at all times. The global shortcut responds in under 500ms even when the main window is hidden.
Obsidian — My Second Brain
Obsidian is free for personal use and stores everything in local Markdown files. No proprietary format. No database. Plain text files in folders on my hard drive. If Obsidian disappears tomorrow, I still have all my notes in a format every text editor can read.
I use it as a knowledge base, not a daily note-taker. Meeting notes, project documentation, research links, how-to guides I write for myself, code snippets I reuse — all linked together with [[wiki links]]. After 18 months, I have 400+ notes and the graph view actually shows useful clusters of connected ideas.
The Daily Notes plugin handles my time blocking schedule. Each morning I create a daily note from a template with my time blocks pre-filled. Tasks that didn't get done yesterday carry forward automatically with a Templater script.
Sync costs $4/month if you want it across devices. I use Syncthing (free, peer-to-peer) to sync my vault between desktop and laptop. It's a little more setup but $0/month after that. The Obsidian mobile app works fine with Syncthing-synced vaults.
Versus Notion: Obsidian is faster, offline-first, and yours forever. Notion is better for shared team wikis and databases. I keep both — Obsidian for personal knowledge, Notion for team collaboration. Different tools for different jobs.
AutoHotKey — Automate the Boring Stuff
AutoHotKey (AHK) is a free scripting language that automates anything on Windows. Text expansion, custom keyboard shortcuts, mouse macros, window manipulation, clipboard processing. If you can describe what you do repetitively, AHK can do it for you.
My most-used scripts: text expansion for email phrases (typing ";sig" expands to my full email signature), a shortcut that moves the current window to my second monitor (Win+Shift+M), and a script that formats selected text as a Markdown link when I hit Ctrl+Shift+K. Each one saves 5-10 seconds per use, hundreds of times per week.
The learning curve is real. AHK's syntax is unusual — it's not Python, it's not JavaScript, it's its own thing. Plan to spend a weekend reading docs and writing your first 5 scripts. After that initial investment, adding new automations takes minutes. I've accumulated 23 scripts over 2 years.
AHK v2 (released 2023) cleaned up the syntax significantly. If you tried v1 years ago and bounced off the weird legacy syntax, give v2 another shot. It reads much more like a modern scripting language now. Variables, functions, and objects all work how you'd expect.
Mac equivalent: Keyboard Maestro ($36 one-time) is the closest match. More visual, easier to learn, but less flexible for edge cases. AHK's ceiling is higher because it's a full scripting language. And it's free.
ShareX — Screenshots That Put Snagit to Shame
ShareX is free, open source, and does everything Snagit ($63 one-time) does. Plus more. Region capture, full screen, scrolling capture, screen recording to GIF or MP4, OCR text extraction, auto-upload to Imgur or custom hosts, annotation editor with arrows and blur, and a workflow system that chains actions together.
My workflow: PrintScreen triggers region capture → auto-copies to clipboard → auto-saves to a dated folder → shows a toast notification. If I need annotations, I hit Ctrl+Shift+PrintScreen instead, which opens the editor after capture. Total time from "I need a screenshot" to "it's in Slack": 4 seconds.
The scrolling capture grabs entire web pages or long documents that don't fit on screen. It literally scrolls the page while capturing, then stitches frames together. Works perfectly about 90% of the time. The other 10% need a manual scroll-and-stitch, usually on weird custom-scrolling sites.
Screen recording exports directly to GIF for bug reports. A 15-second screen recording GIF is worth a thousand words in a Jira ticket. ShareX's GIF encoder produces small files (usually under 2MB for a 10-second clip) with configurable quality and frame rate.
I genuinely don't understand why anyone pays for Snagit in 2026 when ShareX exists. The only advantage Snagit has is a friendlier UI for non-technical users. If you can handle a settings menu, ShareX wins on every feature comparison.
Everything Search — Find Any File in Under 1 Second
Everything by Voidtools indexes every file on your drives and returns search results in under 1 second. Not "pretty fast." Not "a few seconds." Under one second for a search across 2 million files on my system. Windows Search can't even dream of this speed.
The first time you run Everything, it builds an index in about 30 seconds (for a typical 500GB drive). After that, it monitors file changes in real-time. The index stays current without any manual intervention. The program uses about 40MB of RAM to track 2 million files. That's insane efficiency.
I use it 10+ times per day. "Where did I save that PDF from last week?" Ctrl+N (my shortcut to open Everything), type three letters of the filename, there it is. "Which folder has the project config?" Type the filename, hit Enter, it opens the containing folder. Done.
Regex search is supported for power users. I use "\.log$ dm:today" to find all log files modified today. The date filters (dm: for date modified, dc: for date created) make it trivial to find recent files without remembering exact names.
Windows Search in the Start menu indexes slowly, misses files constantly, and returns web results I didn't ask for. Everything replaces it completely. I disabled Windows Search indexing to save system resources and use Everything exclusively.
Flow Launcher — Raycast for Windows
Flow Launcher is the closest thing Windows has to Raycast. Open-source app launcher with a plugin system that extends it into a productivity Swiss Army knife. Alt+Space opens the search bar, and from there I launch apps, search files, do math, look up bookmarks, control Spotify, manage windows, and run custom scripts.
The plugin ecosystem has 200+ community plugins. I use: Everything integration (searches via Everything's index), Clipboard history viewer, Todoist quick-add, Browser bookmarks search, and a color converter. Each plugin adds a keyword trigger — I type "td buy groceries tomorrow" and it adds a Todoist task without opening the app.
Why Flow Launcher over PowerToys Run? Plugins. PowerToys Run is faster for basic launches but Flow Launcher's extensibility is on another level. I use PowerToys Run for quick calculations (it's slightly faster) and Flow Launcher for everything else. They coexist fine on different shortcuts.
Theme support makes it look native. I use a dark theme that matches my Windows 11 dark mode. The launcher fades in smoothly, shows results in real-time as I type, and dismisses with Escape. Response time is under 200ms for installed app searches, which feels instant.
If you're a Mac user who switched to Windows and misses Raycast or Alfred, Flow Launcher is your answer. It won't have Raycast's AI features or built-in window management, but for launching and searching it's equivalent. Pair it with PowerToys for the rest.
Apps I Ditched
Notion (desktop app) — Too slow on Windows. 3-4 second cold starts. I use Obsidian locally and Notion in the browser only when I need it for team stuff. The electron app is a memory hog at 400MB+ idle.
Ditto Clipboard Manager — Replaced by Flow Launcher's clipboard plugin. One less app running in the background. Ditto was fine but redundant once Flow Launcher covered clipboard history.
Greenshot — Was great in 2018. Hasn't been updated meaningfully since. ShareX does everything Greenshot did plus screen recording, OCR, and auto-upload workflows. No contest.
Microsoft PowerAutomate Desktop — Overkill for my needs. Great tool for complex automations with visual flows, but AutoHotKey scripts are faster to write for simple shortcuts and text expansion. I'd recommend PowerAutomate for people who don't want to write code.
Wox Launcher — Flow Launcher is literally a maintained fork of Wox. Same concept, active development, more plugins. Wox development stalled around 2023. Flow Launcher picked up where it left off and kept going.
Total Cost of My Stack
PowerToys: $0. Todoist Pro: $5/month (free tier works for most). Obsidian: $0 (sync via Syncthing). AutoHotKey: $0. ShareX: $0. Everything Search: $0. Flow Launcher: $0.
Monthly total: $5/month (or $0 if you use Todoist free tier). That's it. Six out of seven apps are genuinely free — not freemium with annoying limits, not time-limited trials, not open-source-but-barely-maintained. Actually free, actively developed, and excellent.
Compare this to my old Mac setup: Raycast Pro ($8/mo) + Things 3 ($50 one-time) + Cleanshot X ($29 one-time) + Paste ($4/mo) + Fantastical ($5/mo). That's $17/month recurring plus $79 in one-time costs. Windows gives you equivalent functionality for a fraction of the price.
The Windows free software ecosystem doesn't get enough credit. PowerToys, ShareX, Everything, AutoHotKey, Flow Launcher — these are world-class tools maintained by passionate developers. If you're on Windows and still using only built-in tools, you're leaving massive productivity gains on the table. Start with PowerToys and Everything. Install takes 5 minutes. The improvement is immediate.
Frequently Asked Questions
Common questions about this topic.
Is PowerToys really free?+
Yes. PowerToys is an official Microsoft open-source project on GitHub. Completely free, no trial, no feature gates. It includes FancyZones (window management), PowerToys Run (app launcher), File Rename, Color Picker, and more. On Mac you'd pay $5-50 for equivalent apps individually.
What's the best free alternative to Raycast on Windows?+
Flow Launcher. It's open source, supports plugins, and does app launching, file search, web bookmarks, calculator, and system commands from one search bar. PowerToys Run is simpler but Flow Launcher wins on customization and plugin variety.
Is Everything Search safe to install?+
Yes. Everything by Voidtools is a lightweight file indexing tool that's been trusted by IT professionals for over 15 years. It uses under 50MB of RAM to index millions of files and doesn't phone home or collect data. The entire index builds in seconds and searches return results in under 1 second.
Can AutoHotKey replace paid automation tools like Keyboard Maestro?+
For text expansion, window shortcuts, and repetitive clicks, yes. AutoHotKey handles about 80% of what Keyboard Maestro does on Mac, but with scripting instead of a visual builder. The learning curve is steeper but the ceiling is higher. For complex GUI automation, I'd add Power Automate Desktop (also free on Windows 11).
Related Tools
Continue reading
Notion vs Obsidian in 2026 — I Used Both for 6 Months
After using both Notion and Obsidian daily for 6 months, here's what each does better and why I switched. Real comparison with specific use cases.
Productivity HubThe Pomodoro Technique Actually Works
I've used the Pomodoro technique for 2 years. The 25/5 rhythm changed how I handle deep work. Here's my setup, variations I've tested, and what didn't work.