Uninstall guide

How to uninstall Ollama on Windows — complete removal guide

Uninstalling Ollama requires more than just removing the app. Model files take 4–70 GB and are stored separately. This guide covers removing the app, deleting models and cleaning up all leftover files.

Uninstalling Ollama via Settings does not delete your downloaded models. Models are stored separately and must be deleted manually to free disk space.

Quit and uninstall the app

  • 1

    Quit from system tray

    Right-click the Ollama icon in the system tray → Quit Ollama.

  • 2

    Uninstall via Settings

    Settings → Apps → Installed apps → Ollama → Uninstall. Or:

    cmd.exe
    C:\> winget uninstall Ollama.Ollama
    Successfully uninstalled Ollama
  • 3

    Verify removed

    cmd.exe
    C:\> ollama --version
    'ollama' is not recognized
    C:\> netstat -ano | findstr 11434
    # should return nothing

Delete models and free disk space

Models live in C:\Users\YourName\.ollama\models and are not removed by the uninstaller. Each model is 2–70 GB.

Remove specific models

cmd.exe
C:\> ollama list
llama3:latest 4.7 GB
mistral:latest 4.1 GB
C:\> ollama rm llama3
deleted 'llama3'

Delete everything at once (PowerShell)

PowerShell
PS> Remove-Item -Recurse -Force "$env:USERPROFILE\.ollama"
This permanently deletes all downloaded models.

Remove remaining files

LocationContentsSafe to delete?
%USERPROFILE%\.ollamaModels, configYes
%APPDATA%\OllamaApp data, logsYes
%LOCALAPPDATA%\OllamaCacheYes

Uninstall questions

Does uninstalling Ollama delete my models?
No. The uninstaller removes the app binary but leaves all downloaded models intact. Delete C:\Users\YourName\.ollama\models manually to reclaim disk space.
How to check how much space models are using?
Run ollama list to see each model size. For total folder size in PowerShell: (Get-ChildItem $env:USERPROFILE\.ollama\models -Recurse | Measure-Object -Property Length -Sum).Sum / 1GB
Ollama not in the installed apps list
It may have been installed per-user. Look in %LOCALAPPDATA%\Programs\Ollama and delete manually, then remove the .ollama folder.
Port 11434 still in use after uninstalling
Open Task Manager and end any remaining ollama.exe processes. Verify with netstat -ano | findstr 11434.
How to remove just one model without removing Ollama?
Use ollama rm modelname, e.g. ollama rm llama3. Ollama and your other models are untouched.

Changed your mind?

Download the latest Ollama installer for Windows.

Download Ollama