Difference between using msiexec /y and regsvr32
Hi,
I wanted to know the difference between using msiexec /y & regsvr32 to register a dll.
I wanted to know the difference between using msiexec /y & regsvr32 to register a dll.
0 Comments
[ - ] Hide Comments

so that the conversation will remain readable.
Answer this question
or Comment on this question for clarity
Answers
There is none. Ultimately both call the DLLRegisterServer function in the DLL/OCX.
However, you should use niether to register COM information since, if a dependency is absent, the registration will fail. Export the COM information into a .REG. Import that .REG into your project and, if prompted, elect to use the advertising tables instead of the 'Registry' table.
However, you should use niether to register COM information since, if a dependency is absent, the registration will fail. Export the COM information into a .REG. Import that .REG into your project and, if prompted, elect to use the advertising tables instead of the 'Registry' table.
Please log in to comment
Comments