Skip to content
⌘ NSIS Forum Archive

Mdac, Dcom98

3 posts

ghale#

Mdac, Dcom98

If I create an installer that contains MDAC.exe or DCOM98.exe,
how I can install them directly without copy them in the App directory?
From MDAC documentation, I can use MDAC.exe /Q for quit install.
From DCOM98 documentation, I can use DCOM98.exe /Q for quit install.

Can you help me, please, writing a small script that do you?

Thanks,
ghale.
kichik#
GetTempFileName $R1
File /oname=$R1 MDAC.exe
DetailPrint "Installing MDAC..."
ExecWait "$R1 /Q"
DetailPrint "MDAC installed!"
Delete $R1