🎙️

Voice Shutdown

Say a keyword, your PC turns off. Offline, dependency-free, and built entirely on tools Windows already ships with.

Most recent build
Language
PowerShell
Dependencies
Zero
Internet Required
No
Created
Jul 2026

The problem

Most voice-command tools reach for a cloud speech API, which means an internet dependency, an API key, and a round-trip to a third party just to hear "shut down" and act on it. For something as simple and privacy-sensitive as controlling your own machine's power state, that's the wrong trade-off.

The approach

Voice Shutdown uses Windows' built-in Speech Recognizer — the same engine that's shipped with the OS for years — listening locally for a specific keyword. No audio ever leaves the machine, no API key is required, and there's nothing to install beyond the script itself. When the keyword is recognized, it triggers a standard system shutdown.

Design constraints I held myself to

  • No internet. The recognizer runs entirely on-device.
  • No dependencies. Pure PowerShell against APIs already present on any modern Windows install.
  • Single keyword trigger. Deliberately narrow scope — this isn't a general voice assistant, it does one thing reliably.

Why it's worth building

It's a small tool, but it's a good demonstration of a principle I keep coming back to: the OS usually already has the primitive you need, and reaching for a heavier dependency is often solving a problem that doesn't exist. This one took an afternoon and needs nothing else to keep working five years from now.

Project links

View Source ↗
PowerShell Offline-First Zero Dependencies
← Back to all projects