0

Inspired by the questions on removing orphaned services and force-removing windows services, what techniques do you use to remove traces of an application from Windows? Traces include things like

  • Leftover files in system folders / Program Files
  • Registry info
  • Bad user settings
squillman
  • 37,883
  • 12
  • 92
  • 146

3 Answers3

4

One tool I have had good luck with is the Windows Installer Cleanup Tool.

squillman
  • 37,883
  • 12
  • 92
  • 146
1

Sometimes once you've tried the uninstallers and the cleanup tools, your left with on option, delete the files, and trawl the registry to remove keys.

Editing your registry can harm you pc, backup etc...

The most common places to find applicaiton settings are :

  • HKEY_LOCAL_MACHINE\SOFTWARE.
  • HKEY_CURRENT_USER\SOFTWARE.
  • HKEY_LOCAL_MACHINE\SYSTEM\ CURRENTCONTROLSET\SERVICES

In particular your going to want to look at HKEY_LOCAL_MACHINE\SOFTWARE\MICROSOFT\CURRENTVERSION\RUN, this is where the startup information is stored, so any apps that start on boot will be in here.

Sam Cogan
  • 38,736
  • 6
  • 78
  • 114
0

I uninstall using Revo Uninstaller. It's wonderful and free. I remove trash using CCleaner.

And finally, I use Process Explorer and AutoRuns to find any zombie autostarting and running in background.

Click Ok
  • 956
  • 4
  • 12
  • 18