🪟 Windows 전용 정리

Windows의 OpenClaw는 계획된 작업으로 Gateway 서비스를 관리하며, PowerShell로 정리해야 합니다.

계획된 작업 삭제

관리자 권한으로 PowerShell을 열고 실행하세요:

# OpenClaw Gateway 계획된 작업 삭제
schtasks /Delete /F /TN "OpenClaw Gateway"
💡 작업을 찾을 수 없다는 메시지가 나오면, 작업 이름이 다를 수 있어요. schtasks /Query | findstr /i "openclaw clawdbot gateway"를 실행해서 실제 이름을 찾아보세요.

시작 스크립트 삭제

Remove-Item -Force "$env:USERPROFILE\.openclaw\gateway.cmd"

상태 및 설정 정리

# 설정 디렉토리 삭제
Remove-Item -Recurse -Force "$env:USERPROFILE\.openclaw"

# 사용자 정의 Profile이 있으면
Get-ChildItem "$env:USERPROFILE" -Filter ".openclaw-*" | Remove-Item -Recurse -Force

CLI 제거

# npm으로 설치된 경우
npm rm -g openclaw

# pnpm으로 설치된 경우
pnpm remove -g openclaw

남은 프로세스 확인

# openclaw 관련 프로세스 찾기
Get-Process | Where-Object { $_.ProcessName -match "openclaw|gateway" }

# 강제 종료 (있는 경우)
Get-Process | Where-Object { $_.ProcessName -match "openclaw" } | Stop-Process -Force