Como definir o nome do controle ActiveX

Eu tenho um controle ActiveX e assinei com um certificado de teste tudo isso está funcionando bem, mas o problema é que o meu Internet Explorer mostra uma mensagem feia

O site deseja executar o seguinte complemento: 'Não disponível' de 'Nome do controle não está disponível', Se você confiar no site e no complemento e quiser permitir a execução, clique aqui ....

Por que o nome do controle não está disponível? Eu fiz este controle ActiveX em C # e adicionei o atributo ComVisible ao meu assemblyInfo.cs, aqui está o código

using System.Reflection;
using System.Runtime.CompilerServices;
using System.Security.Permissions;
using System.Runtime.InteropServices;
//
// General Information about an assembly is controlled through the following 
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
//
[assembly: System.Runtime.InteropServices.ComVisible(true)]
[assembly: AssemblyTitle("My ActiveX Control")]
[assembly: AssemblyDescription("My ActiveX Control Description")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("CompanyXYZ")]
[assembly: AssemblyProduct("My ActiveX Control")]
[assembly: AssemblyCopyright("2009")]
[assembly: AssemblyTrademark("CompanyXYZ")]
[assembly: AssemblyCulture("")]     

//
// Version information for an assembly consists of the following four values:
//
//      Major Version
//      Minor Version 
//      Build Number
//      Revision
//
// You can specify all the values or you can default the Revision and Build Numbers 
// by using the '*' as shown below:

[assembly: AssemblyVersion("1.0.0.1")]

Por favor, me ajude?

questionAnswers(3)

yourAnswerToTheQuestion