RegDLL problem
I want to register DLL in my setup program. My NSIS script compiles well but when I run setup it hangs on runing RegDll. First I have tired to use UpdateDLL but the same happened (in fact it is invoking RegDLL). When I tried
ExecWait "$SYSDIR\regsvr32.exe /s my.dll"
setup program passed that line without hungup but I'm not sure if my.dll is registered.
I guess that something is wrong with my.dll or rather with my system (WinXP). I'm sure I have managed to register my.dll using regsvr32 in the past. Bu now on registering it from command line without /s option no message is displayed (no message on unregistering it also). I have tried to figure out if my DLL is already registered serching registry key
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\SharedDLLs]
but I have not found it there. Do you have any clue how to approach to my problem?