Hi,

I create a setup project with one customized action: the installer call .bat for register dll.

the .BAT has this code:

Code:
regsvr32 xxxx.DLL
The DLL and the .BAT are inside the app folder.

The problem is that when the installer call .bat, this call DLL in Windows/System32 directory instead of folder app.
Code:
C:\Windows\System32\regsvr32 xxx.DLL
Then it displays error because it does not found the DLL. How I can resolve this?

thanks in advance.

regards