I created a WinForms app and want to use it as a Kofax Export Connector. This app contains a Setup
class and a Release
class. The project itself is called KofaxExportConnectorCoBRA
.
When I try to register the .inf
file in the Administration module of Kofax using this code
[Scripts]
KofaxExportConnectorCoBRA
[KofaxExportConnectorCoBRA]
SetupModule=KofaxExportConnectorCoBRA.exe
SetupProgID=KofaxExportConnectorCoBRA.Setup
SetupVersion=1.0
ReleaseModule=KofaxExportConnectorCoBRA.exe
ReleaseProgID=KofaxExportConnectorCoBRA.Release
ReleaseVersion=1.0
SupportsNonImageFiles=True
RemainLoaded=True
SupportsKofaxPDF=True
SupportsOriginalFileName=True
SupportsMultipleInstances=False
I get an error message
invalid ProgID
What do I have to fill in here
SetupProgID=KofaxExportConnectorCoBRA.Setup
and here
ReleaseProgID=KofaxExportConnectorCoBRA.Release
? I thought I would have to specify which class has to be registered for the setup and release.
RegAsm.exe KofaxExportConnectorCoBRA.dll /codebase /tlb:KofaxExportConnectorCoBRA.tlb
SetupModule
andReleaseModule
cannot be exe files, but should rather point to a dll - so, don't start with a Windows Forms App in Visual Studio. A Kofax Export Connector always has to be a class library with an optional setup form. The minimum you need are two classes, one implementingIReleaseSetupScript
, and the other oneIReleaseScript
(for more details, refer to the Kofax samples and have a look at Kofax - How to make Release Script configuration dependent on an active job). Your export will then either run in the context of Admin.exe for the setup part, and Release.exe for the release part.