How to set IE extension name (BHO In IE)

How to set BHO name in IE Extension (e.g. Manage Addons). The name that appears in the Add Explorer list of Internet Explorer is the namespace of my program when I attach it to regasm.exe. how can i set the name of this.? ...

Thank.

+3
source share
4 answers

I am working on C # BHO and struggling with this very issue. If you are working with C #, one approach that you can take is to add code similar to the following in the method marked with the ComRegisterFunction attribute. This will set the appropriate registry key value so that the name you want appears on the Manage Add-ons screen.

using (key = Registry.ClassesRoot.CreateSubKey("CLSID\\" + type.GUID.ToString("B")))
{
    key.SetValue(string.Empty, "My BHO Name Here");
}
+3
source
+1
source

? , " ", , BHO #.

+1

.rgs .

ForceRemove {29DFE920-26AD-4377-8FCB-0E7A34A41199} = s 'NameIEBHO Class'

0

Source: https://habr.com/ru/post/1765884/


All Articles