使用Inno Setup安装程序安装Windows外壳扩展DLL

时间:2017-04-10 09:47:53

标签: windows shell com inno-setup windows-explorer

我正在开发一个shell扩展DLL。我想使用Inno Setup安装程序安装它。我看到安装人员问,如果我想用程序安装shell扩展,我想使用Inno Setup安装程序进行类似的操作。我该怎么做呢?

如果没有,你能指引我走正确的道路吗?我一直在搜索有关此事的任何信息。

1 个答案:

答案 0 :(得分:2)

shell扩展只是一个带有COM类的DLL。所以只需部署它并使用regserver flag注册它:

[Files]
Source: "myext.dll"; DestDir: "{app}"; Flags: regserver

另见Register Explorer COM extension only if specific task was selected

相关问题