Disclosure Statement: This site contains affiliate links, which means that I may receive a commission if you make a purchase using these links. As an eBay Partner, I earn from qualifying purchases.

inno setup installer/uninstaller

Post Reply
omar_achraf
Posts: 1
Joined: Thu Jul 15, 2021 4:23 pm

inno setup installer/uninstaller

Post by omar_achraf »

How to uninstall a running CEF4Delphi program with inno setup?
The program will execute and split in several instances so how to do in inno setup to uninstall this running program and its associated installation files?
User avatar
salvadordf
Posts: 4016
Joined: Thu Feb 02, 2017 12:24 pm
Location: Spain
Contact:

Re: inno setup installer/uninstaller

Post by salvadordf »

Hi,

Your Inno Setup script needs to copy your main application EXE and the CEF binaries. In the case of a Windows application the CEF binaries are these :
  • chrome_100_percent.pak
  • libcef.dll
  • snapshot_blob.bin
  • chrome_200_percent.pak
  • libEGL.dll
  • swiftshader\libEGL.dll
  • swiftshader\libGLESv2.dll
  • chrome_elf.dll
  • libGLESv2.dll
  • v8_context_snapshot.bin
  • d3dcompiler_47.dll
  • locales\*.*
  • icudtl.dat
  • resources.pak
If your application doesn't specify any custom location for the CEF binaries then you have to tell Inno Setup to copy them in the same directory where the main application EXE is located.

Please, read this document for more information :
https://www.briskbard.com/index.php?lang=en&pageid=cef
Post Reply