Archive: Installing MSXML3


Installing MSXML3
Hi

Has anyone already installed MSXML3 from an NSIS script and if so could they point me in the right direction so tat I can conform with MS licence agreements?

Thanks

Tim


I have installed other MS products not the MSXML3, I am not sure if it is MSI or an exe...
Still for your ref.

use for exe
ExecWait '"NameoftheMSXML3.exe"' $0 ;$0 for error flag

use for MSI
ExecWait 'MSIEXEC.EXE "NameoftheMSXML3.msi" /qn /norestart' $0

Try with this if it helps...


Thanks NBaua, I'll give it a try.

Tim