Completely removing Wispr Flow from your device
Last updated: July 11, 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.
Quick checks
Did a standard uninstall already work? If reinstalling Flow gives you a fresh login screen and no old settings, you don't need this guide.
Is Flow fully closed? Quit it from the menu bar (Mac), system tray (Windows), or recents (mobile) before starting.
Are you on a managed device? If your work or school manages your device, some uninstall steps may be blocked by your admin — skip to Still need help? at the bottom.
How to completely remove Wispr Flow
Mac
Choose Option A (a one-step script) or Option B (manual removal).
Option A: Use the uninstall script (recommended)
Warning: 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 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"
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"
echo "Removing logs..."
rm -rf "$HOME/Library/Logs/Wispr Flow"
echo "Resetting permissions..."
tccutil reset Microphone 2>/dev/null || true
tccutil reset ScreenCapture 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, Flow's application data (config, database, session), and logs. Microphone and screen recording permissions are reset automatically.
Note: Accessibility permission must still be removed manually. Go to System Settings → Privacy & Security → Accessibility and remove Wispr Flow if listed.
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 folder). Inside this folder, make sure to remove the main database file along with any accompanying sidecar files in the same folder, as well as the session file. Leaving sidecar files behind can cause issues on reinstall.~/Library/Logs/Wispr Flow(log files)~/Library/Application Support/Flow(legacy location from older versions — may not exist)~/Library/Preferences/Wispr Flow.plist(optional, may not exist)~/Library/Saved Application State/Wispr Flow.savedState(optional, may not exist)~/Library/HTTPStorages/Wispr Flow(optional, may not exist)~/Library/Caches/Wispr Flow(optional cache)
Empty the Trash again.
Remove Wispr Flow from login items in System Settings → General → Login Items.
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.
Note for Notetaker / meeting recorder users: On recent versions of macOS, Flow also holds a separate System Audio permission that is not cleared by resetting Screen Recording. To reset it via Terminal, run:
tccutil reset AudioCapture.
After completing these steps, Wispr Flow is fully removed. Reinstalling will start fresh with no previous settings or data.
Note: Permission entries can persist even after the app is deleted. This is expected macOS behavior.
Windows
Choose Option A (a one-step script) or Option B (manual removal).
Note: Windows has two possible install layouts. The standard installer places files under your user's local app data folder. The enterprise/MSI installer used for managed deployments installs to Program Files instead. If your device was set up through your workplace, uninstall via Settings → Apps rather than the script below.
Option A: Use the uninstall script (recommended)
Warning: This script is designed for the standard install location under your user's local app data folder. If Wispr Flow was installed to a custom or user-specific directory, use Option B 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 - App cache and updater
echo - Startup shortcut
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"
echo Removing app cache...
powershell -Command "Remove-Item -Path \"$env:LOCALAPPDATA\Wispr Flow\" -Recurse -Force -ErrorAction SilentlyContinue"
echo Removing updater...
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 startup shortcut...
powershell -Command "Remove-Item -Path \"$env:APPDATA\Microsoft\Windows\Start Menu\Programs\Startup\Wispr Flow.lnk\" -Force -ErrorAction SilentlyContinue"
echo.
echo ============================================
echo Wispr Flow has been uninstalled.
echo ============================================
echo.
pause
Save the file as
Uninstall Wispr Flow.bat. 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), the app cache, the updater, and the Startup folder shortcut. It automatically stops Wispr Flow if it's running, so manually quitting first is optional.
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 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\Local\WisprFlow(install directory)C:\Users\[YourUser]\AppData\Local\Wispr Flow(app cache — may not exist)C:\Users\[YourUser]\AppData\Local\wispr-flow-updater(updater — may not exist)C:\Users\[YourUser]\AppData\Roaming\Flow(legacy location from older versions — may not exist)
When deleting the database manually, make sure to remove the main database file along with any accompanying sidecar files in the same folder. Leaving these files behind can cause issues on reinstall.
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. No registry cleanup is required.
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.
Note: If your AppData folder is synced by a cloud storage service (such as OneDrive), the database files may be marked read-only. If you cannot delete them, right-click the file, select Properties, uncheck Read-only, and try again.
iOS
Warning: Simply deleting the app does not remove your login session or data shared with the Flow Keyboard extension. Sign out from within the app and remove the keyboard extension first to ensure a completely fresh state.
Sign out of Wispr Flow. Open the app, tap the side menu icon, then go to Account → Sign Out.
Remove the Flow Keyboard extension.
Go to iOS Settings → General → Keyboard → Keyboards.
Delete Wispr Flow.
Remove the Flow Notes Lock Screen widget (if added). This is the circular accessory widget on your Lock Screen.
Press and hold your Lock Screen until customization mode appears.
Tap Customize, then tap the Wispr Flow widget slot and remove it.
Remove the Control Center buttons (if added). These are separate from the Lock Screen widget.
Go to iOS Settings → Control Center.
Tap the red minus button next to the Wispr Flow recording toggle and/or Flow Notes, then tap Remove.
Delete Wispr Flow Siri Shortcuts (if added).
Open the Shortcuts app.
Search for Flow to find all Wispr Flow shortcuts: Dictate a Flow Note, Quick Dictation to Clipboard, Quick Dictation to Notes, Open Flow Notes, Save Flow Note, and Turn On/Off.
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) and 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. Open Wispr Flow, tap the navigation drawer, then go to Account → Sign out.
Note: Signing out on Android automatically deletes locally stored transcripts (audio and text) — the confirmation dialog explicitly asks "Sign out and delete transcripts?". Per-user preferences (such as language and bubble size) are preserved on the device and restored when the same account signs back in.
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: Clearing storage removes locally stored data (transcripts and current settings on this device). Custom dictionary words, snippets, and personalization styles are synced to your account 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.
Common issues
Flow gets stuck in a corrupted state and won't recover after restarting
This was caused by an issue where Flow's automatic database recovery didn't fully clean up all related files — or couldn't delete them if the data folder was synced by iCloud or OneDrive (which can mark files as read-only). This has been fixed: Flow now reliably cleans up and recovers automatically on the next restart. To resolve:
Update Wispr Flow to the latest version.
Restart Flow after updating. Recovery happens automatically.
If you are performing a manual cleanup, make sure to delete the main database file along with any accompanying sidecar files in the same folder listed in the steps above for your platform. Leaving these files behind can reintroduce the problem.
Note: As a safety net, Flow keeps a daily backup snapshot of its database. The sidecar files alongside the database are normal during regular operation — they are not by themselves a sign of corruption.
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 or 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. To fully prevent restore on reinstall, you may also need to disable Google account backup for Wispr Flow, or delete the Wispr Flow cloud backup snapshot from the Backups section in Google Drive, before reinstalling.
iOS: Your login session is stored in a container shared with the Flow Keyboard extension. If the keyboard extension is still installed when the app is deleted, this data persists. Sign out from within the app and remove the Flow Keyboard extension before deleting the app.
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.
Will my custom dictionary be lost?
No. Custom dictionary words are synced to your account, so they'll be restored when you sign back in. Locally stored items like transcripts and personalization styles are removed.
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. You can reach support directly from the app:
Desktop: Click the Help button, then select Talk to support. You can also attach a single image (up to 3 MB) using the paperclip icon.
iOS: Open the side menu, then tap Talk to Support. The dialog has two tabs: Report an issue and Share feedback.
Android: Open the navigation drawer and tap Report an issue or Share feedback.
Tip: Messages sent through the in-app support form automatically include diagnostic information to help our team troubleshoot faster. On desktop, this includes app logs and configuration; on mobile, this includes device model, OS version, and app version.