1

Hello I need some way of finding all the insllaled applications on windows(I already found the names but i need the actual folder). Also I need the path to their uninstaller. I'm trying to build an application that is similar with Advanced Uninstaller pro. PS. I need to do this in C#.

dburner
  • 1,007
  • 7
  • 22

1 Answers1

0

I think you wont need the path to the installer, you have to get the UninstallString value for each installed application so you can excute it once wanted to be removed. All of them are available here : HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall (my case is 64bit system) You can enumerate all apps from here by getting DisplayName value.
Hope it helps

HichemSeeSharp
  • 3,240
  • 2
  • 22
  • 44