Click here to Skip to main content
15,886,422 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I'm making a program to remove ActiveX controls. But..

I don't know how to get a list of installed controls...

...and I don't know how to remove them once found!

I searched the 'Net in vain, but could not find an answer.
Posted
Updated 21-Apr-10 13:05pm
v3

A Microsoft tool named RegMaid does the same thing as what you want to do. The nice thing is that it comes with the full C++ source code. As you can see there is lot involved in removing ActiveX controls (CLSID, AppID, Interfaces, Typelibs etc). Download the tool and the source code here:

http://support.microsoft.com/kb/156078[^]

The code may require some tweaking to be build in latest versions of Visual Studio, and of course if you're trying to use VB.NET you'll want to keep in mind that .NET provides some additional libraries for manipulating the registry. But still, you can get a clean idea on how to write your own tool by looking at the source.
 
Share this answer
 
v4
The registry records are your friend here.
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900