How to remove program from Add/Remove Programs while the program is still installed ?

F

flahmeshess

After I installed a program, there is a new entry in the "Add/Remove
Program". Is it possible to remove the entry while the program is
still installed ? Thanks.
 
T

Torgeir Bakken \(MVP\)

flahmeshess said:
After I installed a program, there is a new entry in the
"Add/Remove Program". Is it possible to remove the entry
while the program is still installed ? Thanks.
Hi,

Yes, you can do that by manipulating registry values under the app's
entry under the registry key
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\

Two different ways depending on installer technology:

1)
If the app is installed with Windows Installer technology, the key
that contains the app's uninstall information have a value
"WindowsInstaller" that is set to 1 (REG_DWORD).

In this case, do the following to hide the entry in ARP:

Create a new registry value of type REG_DWORD, and give it the name
SystemComponent and set the value to 1.


2)
If no WindowsInstaller entry is found, delete the DisplayName registry
value.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top