运行 SomeActiveX.Exe /regserver 的 API 等效项

发布于 2024-07-26 09:59:22 字数 87 浏览 3 评论 0原文

我需要以编程方式注册 ActiveX exe,而 Shell(SomeActiveX.Exe /regserver) 是不够的。 有人知道等效的 API 吗?

I need to register an ActiveX exe programmatically and Shell(SomeActiveX.Exe /regserver) is not sufficient. Is anyone aware of an API equivalent?

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

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

发布评论

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

评论(2

长途伴 2024-08-02 09:59:22

您可以使用 DllRegisterServer 注册 COM如果它是进程内 com 对象,则以编程方式访问组件。 以下是 MSDN 上的 VB6 示例

要注册进程外 COM 对象,事情会变得棘手。 请参阅公开 ActiveX 对象。 Hello 示例显示了一些选项。 Larry Osterman 对此发表了博客以获取背景信息。

一般来说,如果您需要对 EXE 执行此操作,则脱壳到 *.EXE /regserver 会容易得多。

You can use DllRegisterServer to register a COM component programatically, if it's an in-process com object. Here is a VB6 example on MSDN.

To register an out of process COM object, things get tricky. See Exposing ActiveX Objects. The Hello Sample shows some of the options. Larry Osterman blogged about this for background info.

In general, if you need to do this to an EXE, shelling out to *.EXE /regserver will be much easier.

走走停停 2024-08-02 09:59:22

您也可以尝试使用 regsvr32。 这应该足够了:

Shell(SomeActiveX.Exe /regserver)
Shell(regsvr32 SomeActiveX.Exe)

You could try using regsvr32 also. This should be sufficient:

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