Quote:
Originally Posted by audiofeel
1. For some reason, you do not have the necessary font installed for the installer to work correctly. Namely Segoe MDL2 Assets.
It is possible that various tweaks were used in the system to speed up work (such as completely shutting down and removing the regular Firewall Windows, fonts will not be installed without it.).
------------
2. Find the necessary strings in the script using an internal search and add one value there. maybe it will help, for a quick shutdown.
------------
procedure DeinitializeSetup();
begin
DeleteFMXFont(ExpandConstant('{tmp}\segmdl2.ttf')) ;
ISArcExCleanUp;
FMXInnoShutDown;
end;
------------
3. Or connect the module and the ISDone library. With it, the output and closing of unpacking is faster.
The ISDone module and library are perfectly and correctly connected to these scripts. How to do this approximately, I emphasize that approximately, the author of the FMXInno library showed back in April.
|
Thank you sir, for the quick reply. 1st one problem I fixed successfully. But 2nd one I tried by inserting "ISArcExCleanUp;" in "procedure DeinitializeSetup();" step & upon closing installer dialogue box, setup is hanging. 3rd suggestion you given I couldn't understand even though have ISDone resources (from other scripts) with me.