I'm having a step that restores databases for my application and I'm currently handling it in the AfterInstall
function of my exe's Run section.
The Progress bar only shows the file extraction process after which it displays Finishing message.
I'd like to update this progress Bar to show Database restoration step covering 50 percent of the overall installation progress
I tried manipulating the progress bar within my Database restore procedure called in AfterInstall
parameter, as per Inno Setup: How to manipulate progress bar on Run section? and Inno Setup - Prevent extraction of files from setting progress bar to 100% but the progress bar stopped working.
Any suggestions are highly appreciated, Thanks in advance.