如何使用 tlbimp.exe 的 /keycontainer 开关?

发布于 2024-07-30 13:11:10 字数 171 浏览 2 评论 0原文

有人有如何使用 tlbimp.exe 的 /keycontainer 命令行开关的示例吗?

谷歌......他们没有帮助。 它始终是 /publickey/keyfile。 没有使用 /keycontainer 的示例。

Anybody have an example of how to use tlbimp.exe's /keycontainer command line switch?

The googles...they don't help. It's always /publickey, or /keyfile. No example of using /keycontainer.

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

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

发布评论

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

评论(1

长梦不多时 2024-08-06 13:11:10

好吧,为了其他可能遇到这种情况的人来回答我自己的问题:

首先,您需要将您的公钥/私钥放入“容器”中。 sn.exe 可以为您执行此操作:

sn.exe -i MySpecial.pfx MagicContainerName

然后您可以像这样使用 tlbimp.exe

tlbimp.exe MyActiveX.dll /out:MyActiveX.Interop.dll /keycontainer:MagicContainerName 

最后,清理您创建的容器:

sn.exe -d MagicContainerName

Well, to answer my own question for the sake of anyone else who may find themselves in this situation:

First, you need to put your public/private key into a 'container'. sn.exe can do this for you:

sn.exe -i MySpecial.pfx MagicContainerName

Then you can use tlbimp.exe like so:

tlbimp.exe MyActiveX.dll /out:MyActiveX.Interop.dll /keycontainer:MagicContainerName 

Finally, cleanup the container you created:

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