Just want to inform there is a syntax error in the Inno script entries in the Xojo WindowsUniversalRuntime.pdf file.
This is how it is shown in the Xojo docs:
Filename: {tmp}VC_redist.x86.exe; Parameters: "/install /quiet /norestart"; StatusMsg: "Installing 32-bit runtime..."; Flags: waituntilterminated
But running the compiled .exe installer file will give an error it does not find the VC_redist.x86.exe file.
The correct syntax is:
Filename: {tmp}\\VC_redist.x86.exe; Parameters: "/install /quiet /norestart"; StatusMsg: "Installing 32-bit runtime..."; Flags: waituntilterminated
The \ is missing in the original docs.