Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Updated to include information on registering plugins for 32-bit and 64-bit platforms.

Registering plugins

Plugins may must be registered on a system by running, on the command prompt, one of the following two commands. The first command is to register the plugin for 32-bit programs, the command which follows:second command is to register the plugin for 64-bit programs. Plugins compiled as "Any CPU" need to be registered for the same platform (32-bit, 64-bit or both) as the program GUI.

Code Block
c:\windows\Microsoft.NET\Framework\v2v4.0.5072730319\regasm /codebase /tlb /verbose  plugin.dll

or

c:\windows\Microsoft.NET\Framework64\v4.0.30319\regasm /codebase /tlb /verbose  plugin.dll

where:

  • plugin.dll is the name of the plugin DLL file

...