Archive: Register a DLL


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

You should probably use a backslash, not a forward slash.


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.