Completely removing Wispr Flow from your device
Last updated: April 23, 2026
Available on: Mac, Windows, iOS, Android
If a standard uninstall didn't fix your issue, or you want a completely clean slate, this guide walks you through removing Wispr Flow and all its data — including hidden folders and system permissions. Most platforms take under 5 minutes.
How to completely remove Wispr Flow
Mac
Option A: Use the uninstall script (recommended)
Note: This script is designed for the standard install location (/Applications/Wispr Flow.app). If Wispr Flow was installed to a custom or user-specific directory, use Option B (manual removal) instead.
Quit Wispr Flow completely.
Open Terminal (search for "Terminal" in Spotlight, or find it in Applications → Utilities).
Copy and paste the entire script below into Terminal, then press Enter:
#!/bin/bash
set -e
echo "============================================"
echo " Wispr Flow Uninstaller for macOS"
echo "============================================"
echo ""
echo "This will remove:"
echo " - /Applications/Wispr Flow.app"
echo " - Application Support data (config, database, session)"
echo " - Logs, caches, and preferences"
echo " - Saved application state"
echo " - Microphone and screen recording permissions"
echo ""
read -p "Are you sure you want to uninstall Wispr Flow? (y/n) " -n 1 -r
echo ""
if [[ ! $REPLY =~ ^[Yy]$ ]]; then
echo "Uninstall cancelled."
exit 0
fi
echo ""
echo "Quitting Wispr Flow..."
osascript -e 'quit app "Wispr Flow"' 2>/dev/null || true
sleep 1
pkill -f "Wispr Flow" 2>/dev/null || true
pkill -f "Wispr Flow Helper" 2>/dev/null || true
sleep 1
echo "Removing app bundle..."
rm -rf "/Applications/Wispr Flow.app"
echo "Removing Application Support data..."
rm -rf "$HOME/Library/Application Support/Wispr Flow"
rm -rf "$HOME/Library/Application Support/Caches/Wispr Flow"
echo "Removing logs..."
rm -rf "$HOME/Library/Logs/Wispr Flow"
echo "Removing caches..."
rm -rf "$HOME/Library/Caches/com.wispr.flowapp"
rm -rf "$HOME/Library/Caches/com.electron.wispr-flow"
echo "Removing preferences..."
rm -f "$HOME/Library/Preferences/com.wispr.flowapp.plist"
rm -f "$HOME/Library/Preferences/com.electron.wispr-flow.plist"
rm -f "$HOME/Library/Preferences/com.electron.wispr-flow.accessibility-mac-app.plist"
echo "Removing saved application state..."
rm -rf "$HOME/Library/Saved Application State/com.wispr.flowapp.savedState"
echo "Removing HTTP storages..."
rm -rf "$HOME/Library/HTTPStorages/com.wispr.flowapp"
echo "Resetting permissions..."
tccutil reset Microphone com.electron.wispr-flow 2>/dev/null || true
tccutil reset ScreenCapture com.electron.wispr-flow 2>/dev/null || true
tccutil reset SystemPolicyAllFiles com.electron.wispr-flow 2>/dev/null || true
echo ""
echo "============================================"
echo " Wispr Flow has been uninstalled."
echo "============================================"
echo ""
echo "NOTE: Accessibility permission must be removed manually."
echo " Go to System Settings > Privacy & Security > Accessibility"
echo " and remove Wispr Flow from the list."
echo ""
echo "You can close this window."
Review the list of items that will be removed, then type
yand press Enter to confirm.Wait for the script to finish. You'll see a confirmation message when it's done.
The script removes the app, all application data (config, database, session), logs, caches, preferences, and saved state.
Note: Accessibility permissions must still be removed manually. Go to System Settings → Privacy & Security → Accessibility and remove Wispr Flow if listed. Screen Recording and Microphone permissions are automatically reset by the script.
Option B: Remove manually
Quit Wispr Flow completely.
Click the Wispr Flow icon in the menu bar.
Select Quit Wispr Flow.
Confirm Flow is not running.
Open Activity Monitor.
Search for Wispr Flow.
If you see any Wispr Flow processes, select them and click Stop → Force Quit.
Remove the app.
Open Finder.
Go to Applications.
Drag Wispr Flow to the Trash, then empty the Trash.
Delete residual files.
In Finder, press Shift + Command + G to open "Go to Folder."
Check each of these folders for any Wispr Flow files or folders, and move them to the Trash:
~/Library/Application Support/Wispr Flow(main data: database, preferences, session)~/Library/Logs/Wispr Flow(log files)~/Library/Caches/com.wispr.flowapp~/Library/Caches/com.electron.wispr-flow~/Library/Preferences/com.wispr.flowapp.plist~/Library/Preferences/com.electron.wispr-flow.plist~/Library/Preferences/com.electron.wispr-flow.accessibility-mac-app.plist~/Library/Saved Application State/com.wispr.flowapp.savedState~/Library/HTTPStorages/com.wispr.flowapp~/Library/Application Support/Flow(legacy location from older versions — may not exist)
Empty the Trash again.
Remove Wispr Flow from login items.
Open System Settings → General → Login Items and remove Wispr Flow if listed.
Revoke system permissions.
Open System Settings → Privacy & Security → Accessibility and remove Wispr Flow if listed.
Open System Settings → Privacy & Security → Microphone and remove Wispr Flow if listed.
Open System Settings → Privacy & Security → Screen Recording and remove Wispr Flow if listed.
After completing these steps, Wispr Flow is fully removed. Reinstalling will start fresh with no previous settings or data.
Note: Permission entries persist even after the app is deleted. This is expected macOS behavior.
Windows
Option A: Use the uninstall script (recommended)
Note: This script is designed for the standard install location (%LOCALAPPDATA%\WisprFlow). If Wispr Flow was installed to a custom or user-specific directory, use Option B (manual removal) instead.
Open Notepad (search for "Notepad" in the Start menu).
Copy and paste the entire script below into Notepad:
@echo off
echo ============================================
echo Wispr Flow Uninstaller for Windows
echo ============================================
echo.
echo This will remove:
echo - Wispr Flow application files
echo - Application data (config, database, session)
echo - Caches and registry entries
echo.
set /p CONFIRM="Are you sure you want to uninstall Wispr Flow? (y/n) "
if /i not "%CONFIRM%"=="y" (
echo Uninstall cancelled.
pause
exit /b 0
)
echo.
echo Stopping Wispr Flow...
taskkill /IM "Wispr Flow.exe" /F >nul 2>&1
echo Removing application files...
powershell -Command "Remove-Item -Path \"$env:LOCALAPPDATA\WisprFlow\" -Recurse -Force -ErrorAction SilentlyContinue"
powershell -Command "Remove-Item -Path \"$env:LOCALAPPDATA\wispr-flow-updater\" -Recurse -Force -ErrorAction SilentlyContinue"
echo Removing application data...
powershell -Command "Remove-Item -Path \"$env:APPDATA\Wispr Flow\" -Recurse -Force -ErrorAction SilentlyContinue"
echo Removing caches...
powershell -Command "Remove-Item -Path \"$env:LOCALAPPDATA\Wispr Flow\" -Recurse -Force -ErrorAction SilentlyContinue"
echo Removing registry entries...
powershell -Command "Remove-ItemProperty -Path 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Run' -Name 'Wispr Flow' -ErrorAction SilentlyContinue"
powershell -Command "Remove-Item -Path 'HKCU:\Software\WisprFlow' -Recurse -Force -ErrorAction SilentlyContinue"
powershell -Command "Remove-Item -Path 'HKCU:\Software\Wispr Flow' -Recurse -Force -ErrorAction SilentlyContinue"
echo.
echo ============================================
echo Wispr Flow has been uninstalled.
echo ============================================
echo.
pause
Save the file as
Uninstall Wispr Flow.bat. In Notepad, go to File → Save As, change "Save as type" to All Files (*.*), name the fileUninstall Wispr Flow.bat, and save it to your Desktop.Double-click the saved
.batfile to run it.Review the list of items that will be removed, then type
yand press Enter to confirm.Wait for the script to finish. You'll see a confirmation message when it's done.
The script removes the app, all application data (config, database, session), caches, and registry entries.
Note: The script automatically stops Wispr Flow if it's running, so manually quitting first is optional but recommended.
Option B: Remove manually
Confirm Wispr Flow is not running.
Right-click the taskbar and open Task Manager.
Select the Processes tab.
Look for Wispr Flow.
If you see it, select it and click End task.
Uninstall Wispr Flow.
Open Settings.
Go to Apps → Installed apps (or Settings → Apps → Apps & features on some versions).
Find Wispr Flow in the list.
Click it and select Uninstall, then follow the prompts.
Remove leftover folders.
Open File Explorer.
In the address bar, go to each of these paths (replace
[YourUser]with your Windows username):C:\Users\[YourUser]\AppData\Roaming\Wispr Flow(main data: database, preferences, session, logs)C:\Users\[YourUser]\AppData\Roaming\Flow(legacy location from older versions — may not exist)
Delete any Wispr Flow folders you find.
Empty the Recycle Bin.
Remove Wispr Flow from startup.
Press Win+R, type shell:startup, and delete any Wispr Flow shortcut if present.
After completing these steps, Wispr Flow is fully removed. Reinstalling will start fresh with no previous settings or data.
Tip: If you don't see the AppData folder, enable hidden items in File Explorer: View → Show → Hidden items.
iOS
Warning: Simply deleting the app does not remove your login session or shared data with the keyboard extension. Sign out first and remove the keyboard for a completely fresh state.
Sign out of Wispr Flow before deleting.
Open the app → side menu → Account → Sign Out.
Remove the Flow Keyboard extension.
Go to iOS Settings → General → Keyboard → Keyboards.
Delete Wispr Flow.
Remove the Lock Screen widget (if added).
Press and hold your Lock Screen until the customization mode appears.
Tap Customize, then tap the Wispr Flow widget and remove it.
Remove the Control Center button (if added).
Go to iOS Settings → Control Center.
Tap the red minus button next to Flow and/or Flow Notes and tap Remove.
Delete Wispr Flow Siri Shortcuts (if added).
Open the Shortcuts app.
Search for Flow to find all Wispr Flow shortcuts. These may include: Dictate a Flow Note, Quick Dictation to Clipboard, Quick Dictation to Notes, Toggle Flow On/Off, Open Flow Notes, and Save Flow Note.
Tap and hold each shortcut, then tap Delete.
Delete the app and its data.
On your home screen, press and hold the Wispr Flow app icon.
Tap Remove App.
Tap Delete App, then confirm.
Confirm removal from storage.
Go to iOS Settings → General → iPhone Storage (or iPad Storage).
Scroll to check that Wispr Flow no longer appears in the list of apps.
After completing all steps, reinstalling Wispr Flow from the App Store will start with a fresh app state.
Android
Warning: Android may automatically back up and restore app data. Clear storage before uninstalling to ensure a completely fresh state. Simply uninstalling and reinstalling may restore your previous login session and settings.
Sign out from within the app first (optional). Open Wispr Flow → navigation drawer → Account → Sign out. This deletes all locally stored transcripts and signs you out cleanly.
Force stop Wispr Flow.
Go to Settings → Apps (or Apps & notifications on some devices).
Find and tap Wispr Flow.
Tap Force stop, then confirm.
Clear app data.
In the same Wispr Flow app info screen, tap Storage or Storage & cache.
Tap Clear storage or Clear data, then confirm.
Note: This also deletes your local transcription history (including any entries not yet uploaded to the server) and resets all app settings. Custom dictionary words are synced to the server in real time and will be restored when you sign in again.
Uninstall the app.
From the Wispr Flow app info screen, tap Uninstall, then confirm.
Alternatively, long-press the Wispr Flow app icon on your home screen or app drawer, then tap Uninstall.
Confirm removal.
Go to Settings → Apps and check that Wispr Flow no longer appears in the list.
Reinstalling Wispr Flow from the Play Store will start with a fresh app state.
FAQs
Flow signs back into my old account right after reinstalling
Some residual app data remained. Follow the steps above for your platform, paying special attention to these platform-specific causes:
Mac / Windows: Double-check that you removed all Library/AppData folders listed in the steps above.
Android: Your data may have been restored via Android Auto Backup. Go to Settings → Apps → Wispr Flow → Storage → Clear storage to remove the restored data, then uninstall again.
iOS: Your login session is stored in a shared app container that may persist after deletion. Sign out from within the app before deleting it and remove the Flow Keyboard extension. In most cases, reinstalling the app clears previous sessions automatically on first launch. However, signing out before deleting is the safest approach to ensure a completely clean state.
I don't see AppData or Library folders on my computer
These folders are hidden by default.
Windows: Enable hidden items in File Explorer: View → Show → Hidden items.
Mac: Use Shift + Command + G in Finder and type the full path (e.g.,
~/Library/Application Support/Wispr Flow).
I get an error when trying to uninstall Wispr Flow
The app may still be running in the background. Fully quit Wispr Flow using Activity Monitor (Mac) or Task Manager (Windows) before uninstalling.
I reinstalled but behaviors or issues are exactly the same
Some residual files were likely missed. Double-check that you removed all folders listed in the steps above for your platform.
Still need help?
Reach out to our support team if:
Flow still auto-logs into the same account after following all steps above
You cannot delete specific Wispr Flow folders because of permission errors
You are on a managed or work device and some options are disabled by your admin
Include your platform, device model, and which steps you completed when reaching out.
Desktop: Click the Help button, then select Talk to support.
iOS: Open the side menu, then tap Talk to Support.
Android: Open the navigation drawer, then tap Report an issue or Share feedback.
Tip: On Desktop and Android, messages sent this way automatically include diagnostic and device information. On iOS, include your app version and device details in your message for faster resolution.