DashDraft values your privacy and simplicity. It does not install system services, hidden drivers, or background registry keys. Uninstallation is as clean and simple as deleting the folders described below.
1. Stop Running Processes
Make sure DashDraft is not actively running in the background before trying to delete its files.
Windows
Run the following command in PowerShell, or end the process from the Windows Task Manager:
Stop-Process -Name 'dashdraft' -Force -ErrorAction SilentlyContinuemacOS / Linux
Kill any active instances of the DashDraft binary using your terminal:
pkill -f 'dashdraft' || true2. Delete Installation Folders
This deletes the main DashDraft executable, its configuration file (config.json), and its execution logs.
Windows
Delete the installation folder located at %LOCALAPPDATA%\DashDraft. In PowerShell:
Remove-Item -Recurse -Force -Path "$env:LOCALAPPDATA\DashDraft" -ErrorAction SilentlyContinueStandard path: C:\Users\<YourUsername>\AppData\Local\DashDraft
macOS & Linux
Delete the hidden installation directory inside your user profile:
rm -rf ~/.DashDraftStandard path: /Users/<username>/.DashDraft (macOS) or /home/<username>/.DashDraft (Linux)
3. Optional: Delete User Workspaces & CSV Data
If you want to keep your analytic workspaces, dashboards, and exported charts for a potential future install, leave this folder untouched. Otherwise, you can purge it to wipe all local data completely.
Windows
Delete the workspaces folder located in your User Profile directory:
Remove-Item -Recurse -Force -Path "$env:USERPROFILE\DashDraft-workspaces" -ErrorAction SilentlyContinueStandard path: C:\Users\<YourUsername>\DashDraft-workspaces
macOS & Linux
Delete the workspaces directory inside your home directory:
rm -rf ~/DashDraft-workspacesStandard path: /Users/<username>/DashDraft-workspaces or /home/<username>/DashDraft-workspaces
4. Clean Up System PATH (Environment Variables)
The installer adds DashDraft to your environment PATH so you can run the dashdraft command from anywhere. If desired, you can clean this up.
Windows
- Press the Win key, type environment variables, and press Enter.
- Click on Environment Variables... at the bottom right.
- In the upper list (User variables), select the Path variable and click Edit....
- Find the entry pointing to
...AppData\Local\DashDraft, click Delete, then click OK to save.
macOS & Linux
Open your shell profile (e.g., ~/.zshrc, ~/.bash_profile, or ~/.bashrc) and delete the following lines:
# DashDraft PATH
export PATH="~/.DashDraft:$PATH"After removing the lines, reload your shell configuration (e.g., run source ~/.zshrc).
Need help or want to reinstall in the future? Head back to the Installation Guide.