Venkatesh Kardas
Venkatesh Kardas

Reputation: 41

Unable to uninstall node.js from my windows 10

enter image description hereGetting this issue while iam uninstalling node.js from programs and features.

Upvotes: 1

Views: 12845

Answers (1)

sachuverma
sachuverma

Reputation: 597

You can try running npm cache clean --force

Then clean these directories

  • C:\Program Files (x86)\Nodejs
  • C:\Program Files\Nodejs
  • C:\Users{User}\AppData\Roaming\npm (or %appdata%\npm)
  • C:\Users{User}\AppData\Roaming\npm-cache (or %appdata%\npm-cache)
  • C:\Users{User}.npmrc (and possibly check for that without the . prefix too)
  • C:\Users{User}\AppData\Local\Temp\npm-*

Remove it from environment variables
Try rebooting


or you can read this blog for some different methods here

Upvotes: 1

Related Questions