Is your Notion acting up?
Is Notion slow to load, showing stale data, or just behaving strangely after switching between workspaces?
Nine times out of ten, clearing the cache fixes it.
Notion’s official Troubleshoot and Reset guide covers the manual steps. This post adds a faster option: a script (Windows) and a Terminal command (Mac) that kills all running Notion processes and wipes the cache in one shot — the same thing Notion support will walk you through, just without the back-and-forth.
Important: Clearing the cache won’t delete your Notion content. Your pages, databases, and files all live in Notion’s cloud. You will need to log back in after the reset.
When To Clear the Notion Cache
This fix works well for:
- Notion loading slowly or freezing on startup
- Pages showing outdated content that won’t refresh
- Notion behaving differently across workspaces (common if you consult for multiple clients)
- Login loops or authentication errors
- After a Notion update that seems to have broken something
It’s less likely to help with:
- Database or formula errors (those are workspace configuration issues, not cache issues)
- Missing pages or accidentally deleted content (see Notion Backup & Restore options)
- Automation or integration problems (those live outside Notion’s local app entirely)
Windows Script to Kill Notion and Reset Notion Cache
Anybody who knows what they are doing would never download a command script from an unknown site, so I’m including the text below. You’ll want to save this to a file with a .cmd extention, then you can clear and reset Notion cache on demand.
@echo off
cls
@echo.
@echo This script will reset Notion to fix common problems.
@Echo It does what Notion Support will invariably ask you to do.
@echo.
@echo First, we are going to exit/kill all running copies of Notion on this machine.
pause
cls
taskkill /f /fi "IMAGENAME eq Notion.exe"
@echo ---------------------
@Echo.
@Echo If there were a BUNCH of processes killed, you can exit now (Ctrl-C) and see if that fixed the problem.
@echo.
@Echo Otherwise, we will clean up the AppData (caching) files next.
@echo These are found under the AppData\Roaming\Notion
@Echo.
@Echo The current User = %USERNAME%
@Echo IF THE USER IS BLANK, THEN ABORT NOW - Ctrl-C
@Echo.
@echo We are about to delete from: C:\Users\%USERNAME%\AppData\Roaming\Notion
@echo You can exit now (Ctrl-C), or
Pause
del /f /q /s C:\Users\%USERNAME%\AppData\Roaming\Notion\*.*
rmdir /s /q C:\Users\%USERNAME%\AppData\Roaming\Notion\
@echo.
@echo You can re-start Notion now. You will have to log in again.
For Mac Users
bash
pkill -x Notion && rm -rf ~/Library/Application\ Support/Notion
Or as separate steps:
Quit Notion completely (Cmd+Q, or force quit via Activity Monitor)
Open Terminal and paste: rm -rf ~/Library/Application\ Support/Notion
Relaunch Notion and log back in
If cache issues keep coming back
Recurring Notion glitches, especially if you’re managing multiple workspaces or client environments, are often a sign that the workspace architecture has gotten more complex.
I help small businesses build Notion systems that stay reliable as they grow.
- Cleaner structures
- Better permissions
- Automation that reduces the manual overhead.
If Notion starts to feel like more trouble than it’s worth, that’s usually a fixable problem. Book a free consultation and we’ll work to fix it for you.

