An AutoHotkey v2 script that automatically closes the Wispr Flow application window to the system tray on Windows startup. This is useful if you want this to happen automatically without manual intervention.
- Automatically detects and closes the Wispr Flow window on startup
- Polls every 100ms for fast response
- Automatically exits after 2 minutes if the window doesn't appear (in case it was already closed manually)
- Runs silently in the background
- Windows 10/11
- AutoHotkey v2 installed
- Download or clone this repository
- Ensure AutoHotkey v2 is installed on your system
- The script file
HideWisprFlow.ah2is ready to use
This method runs the script earlier in the boot process and is more reliable:
- Open Task Scheduler (search for it in the Start menu)
- Click Create Basic Task in the right panel
- Name: Enter "Hide Wispr Flow" (or any name you prefer)
- Description: (Optional) Add a description
- Click Next
- Trigger: Select "When I log on"
- Click Next
- Action: Select "Start a program"
- Click Next
- Program/script: Browse to your AutoHotkey v2 executable (typically
C:\Program Files\AutoHotkey\v2\AutoHotkey64.exe) - Add arguments (optional): Enter the full path to
HideWisprFlow.ah2:(Use quotes if the path contains spaces)"C:\path\to\HideWisprFlow.ah2" - Click Next, then Finish
- Right-click the task → Properties
- In the General tab:
- Select "Run only when user is logged on"
- Check "Run with highest privileges"
- Click OK
- Press
Win + Rto open Run dialog - Type:
shell:startupand press Enter - Create a shortcut to
HideWisprFlow.ah2in this folder - Right-click the shortcut → Properties
- Change the target to point to AutoHotkey v2 executable with the script as an argument:
"C:\Program Files\AutoHotkey\v2\AutoHotkey64.exe" "C:\path\to\HideWisprFlow.ah2"
This script is provided as-is for personal use. Feel free to modify and distribute as needed.
If you find this useful or have improvements, contributions are welcome!