· ... · 679 chars · 1 min Updated

OpenClaw Windows Uninstall Guide

A simple guide on how to completely uninstall OpenClaw on Windows, including removing config directories and verifying the uninstallation.

Introduction

If you no longer need OpenClaw, you can follow these steps to completely uninstall it. It’s kind of funny—I just made a deployment guide a few days ago!


1. Uninstall OpenClaw

OpenClaw is installed globally via npm, so uninstalling is simple. Open PowerShell and run:

npm uninstall -g openclaw

2. Delete Configuration Files

OpenClaw creates a config directory in your user folder. You can delete it manually.

Windows: Open CMD or PowerShell and run:

rmdir /s /q %USERPROFILE%\.openclaw

Linux / macOS:

rm -rf ~/.openclaw

3. Verify Uninstallation

Run the following command:

openclaw --version

If you see command not found or an error saying the command doesn’t exist, the uninstallation was successful.

Related Posts

Comments