I am using NSIS for creating installers. But i want to get errors happened during installation.Using iferrors at every line or function will be difficult due to length of script etc.So is there any method in NSIS by which i can find errors occurred during installation at least by line number or log or anything else.
Share
All you have is
IfErrors. You generally only check afterExec/ExecWaitetc.Create a macro if you want to check after every
Fileinstruction or whatever your goal is…