Skip to content
⌘ NSIS Forum Archive

Register a DLL

3 posts

bogro#

Register a DLL

Hi,

i wish to register a DLL at the end of my installation. I just want to do the follwing windows command line command:
regsvr32 path/myDll.dll
and for the uninstaller
regsvr32 /u path/myDll.dll
If i use during .onInstSuccess:
RegDLL "path/myDll.dll"
it fails every time.

Is there a simple way to to this.

Thx and greets
bogro#
this is exactly what i use..
RegDLL "C:\Program Files\XYZ\xyz.dll"
BTW: as you see, i want to install a 64-bit Software.