如何在 BHO 中设置发布者名称

发布于 2024-08-31 09:16:21 字数 131 浏览 7 评论 0原文

我用 C# 为 Internet Explorer 编写了 BHO 和工具栏。它们正在安装并正常工作。在 IE8 的管理加载项窗口中,我可以看到我的 BHO 和工具栏。但是,两者的发布者名称都设置为“控件名称不可用”。如何设置发布者名称?

I have written a BHO and a toolbar for Internet Explorer in C#. They are getting installed and working properly. In the manage add-ons window in IE8, I am able to see both my BHO and toolbar. But, the publisher name of both is set to "Control name is not available". How can I set the publisher name?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

不弃不离 2024-09-07 09:16:21

两件事:

  1. 您是否签署了您的 .dll?您需要对模块以及安装包进行签名。
  2. 确保您的 .dll 在 .rc 文件中具有 VERSIONINFO 资源。 这里是文档,其中包含一个示例基本上是剪切和粘贴。

Two things:

  1. Are you signing your .dll? You need to sign your modules as well as your installation package.
  2. Make sure your .dll has a VERSIONINFO resource in your .rc file. Here's the documentation which has a sample you can basically cut and paste.
故事和酒 2024-09-07 09:16:21

签署你的 Dll。 .net 中的 assemblyinfo 文件属性 [assemble: AssemblyCompany("add Publisher Name Here ")] GOES 作为 BHO 中的发布者名称。
谢谢

Signed your Dll. assemblyinfo file in .net the attribute [assembly: AssemblyCompany("add Publisher Name Here ")] GOES as publisher name in a BHO..
Thanks

枕头说它不想醒 2024-09-07 09:16:21

在 AssemblyInfo.cs 文件中设置以下信息后,构建 DLL。

[assembly: AssemblyCompany("Your publisher name")]

当您注册该 DLL 时,请使用以下命令。

regasm /register /codebase YourDLL.dll

现在它将在 IE 的管理插件中显示您的发布者名称。

希望这更有意义。

After set following info in AssemblyInfo.cs file build the DLL.

[assembly: AssemblyCompany("Your publisher name")]

When you register that DLL then use the following command.

regasm /register /codebase YourDLL.dll

Now it will show your publisher name in manage addon in IE.

Hope this make more sense.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文