I built an msi installer package that runs and installs fine. However I'm having trouble getting the bootstrapper exe to run to completion. There is a call into the global functions script near the top of my mainscript.lua:
And inside is a line:
When this line executes I see no further logging messages in my script and the "Windows Installer" help message appears

I checked and the strDownloadPath folder gets created with the MSI in it (C:\Users\sen\AppData\Roaming\Downloaded Installations\{B01F3FC9-27EF-482E-BFA1-E55F3E80967
7})
Why would I not see a log entry that I added immediately after Folder.Create() in the global functions? What can I try to do to resolve this? Please help, this is urgent. I have attached my project for reference msi-project.zip.
Code:
-- Create unique extract path. strInstallerPathExtracted = g_CreateExtractPath(strProductCode,strPackageCode);
Code:
Folder.Create(strDownloadPath);

I checked and the strDownloadPath folder gets created with the MSI in it (C:\Users\sen\AppData\Roaming\Downloaded Installations\{B01F3FC9-27EF-482E-BFA1-E55F3E80967
7})
Why would I not see a log entry that I added immediately after Folder.Create() in the global functions? What can I try to do to resolve this? Please help, this is urgent. I have attached my project for reference msi-project.zip.
Comment