I have a Inno Setup executable to install the program. I have made sure using How to detect whether the setup runs in very silent mode? to use the code to detect if there is a Silent switch and applied the VerySilent switch while installing. The problem I am facing now is that I need some kind of output on the console stating like, while installing: BUSY... and just after completing the installation the output on the console as: DONE!
This is needed because, I have to use /VERYSILENT switch and using this we have no clue if the installation is completed or not, if completed whether it is successful or not. Also a message box is not the way to go because the installs happen remotely. Just a console output and if possible a log file as well.
I have tried the usual pascal code:
begin
WriteLn('Hello World!');
end.
Any help is appreciated and if any more clarification of the problem is required please ask.