运行 SomeActiveX.Exe /regserver 的 API 等效项
我需要以编程方式注册 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 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.
您也可以尝试使用 regsvr32。 这应该足够了:
You could try using regsvr32 also. This should be sufficient: