Conversation
| $claudePaths = @( | ||
| (Join-Path $LocalAppData "Programs\Claude"), | ||
| (Join-Path $LocalAppData "Claude"), | ||
| (Join-Path $env:USERPROFILE ".local\bin") |
There was a problem hiding this comment.
This probably deletes the entire ~\.local\bin entry whenever present, even after claude.exe is removed.
Isn't this directory commonly holds unrelated user tools (npm globals, Python scripts)?
We don't want to silently break other CLIs. We can be surgical here in terms of deletion.
|
|
||
| $registryPaths = @( | ||
| "HKCU:\Software\Claude", | ||
| "HKCU:\Software\Anthropic", |
There was a problem hiding this comment.
This removes HKCU:\Software\Anthropic and HKLM:\Software\Anthropic wholesale.
If any other Anthropic products exist now or later, their settings/licensing would be wiped.
| "HKCU:\Software\Anthropic", | ||
| "HKCU:\Software\Anthropic\Claude Code", | ||
| "HKLM:\Software\Claude", | ||
| "HKLM:\Software\Anthropic", |
There was a problem hiding this comment.
I am not a windows/powershell user myself but do these require elevated access (admin) to execute?
|
Thanks for the PR! I don't have active Windows installation to test so if you can test on Windows and report back, I would be happy to merge after changes. |
|
Hi guys, Is there any test done on this powershell yet? |
|
I used it personally, but the original author is correct that it will remove registry entries for all Anthropic products.I don't have time to work on it further ATM.On Dec 2, 2025, at 9:01 PM, Evil0ctal ***@***.***> wrote:Evil0ctal left a comment (burakdede/claude-code-uninstaller#2)
Hi guys, Is there any test done on this powershell yet?
—Reply to this email directly, view it on GitHub, or unsubscribe.You are receiving this because you authored the thread.Message ID: ***@***.***>
|
|
Okay, thank you for your reply! |
Adds PowerShell support and documentation for users on Windows without WSL or other bash support.