For some reason..I can't get a .MSI file to execute using EXEC command. The Installer says it Executed it..but nothing happens on screen!! 😱
Forums seem to indicate that EXEC command should run it. What newbie mistake am I making???.
Here's a snippet of code....
I've verified that the .MSI file is in Temp\Test1 folder.Section "download" Sec01
nsisdl::download \
"${Tortoise_URL}/TortoiseSVN-1.2.2.4299-VS.NET-ASP.NET-svn-1.2.3.msi" \
c:\temp\test1\TortoiseSVN-1.2.2.4299-VS.NET-ASP.NET-svn-1.2.3.msi
SectionEnd
Section "Install" Sec02
Exec "c:\temp\test1\TortoiseSVN-1.2.2.4299-VS.NET-ASP.NET-svn-1.2.3.msi"
SectionEnd
The Installer ends with
If I use similar commands for .NET Framework...the .EXE works fine.Execute:c:\temp\test1\TortoiseSVN-1.2.2.4299-VS.NET-ASP.NET-svn-1.2.3.msi
Complete
Is there a different command for MSI files?
Any assistance would be greatly appreciated.😛