Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Plugins 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 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
languagepowershell
c:\windows\Microsoft.NET\Framework\v4.0.30319\regasm /codebase /tlb /verbose  plugin.dll

or

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

...