How to find out where an error occurs in the Inno Setup script?

One of my users sent an error message that the installer installed with the following error:

Runtime Error (at 34: 1346): Type Mismatch

The installer uses Inno Setup. Research has shown that the error caused by the error is contained in the installer.iss file.

Where can an error be detected if I know "34: 1346"?

+7
source share
1 answer

This error location is in the compiled bytecode of your script and as such it is almost impossible to track down to a line of code.

If they can play it, they should start your installer using the command line /log=filename , and you can look into such a file.

+8
source

All Articles