Inno Setup - Delete old/obsolete files on update
Inno Setup - Delete old/obsolete files on update So, I realize that this question has been asked before. In fact I read through a good 10 of them before writing this, but none of them have a applicable solution and I'm hoping that nowadays someone has found something. The problem: My program is build with a script, creating all final files in a single folder. Those files are included in inno like this: [Files] Source: "buildexe.win-amd64-3.6*"; Excludes: "*.key, *.log"; DestDir: "{app}"; Flags: ignoreversion recursesubdirs createallsubdirs The application has been out there for a few months with different updates. There is no record anymore of old files, though it could be painstakingly re-assembled as we do have version control and I could build the old installers again. From what I understand, you're meant to use the InstallDelete section to get rid of old files - however you are not meant to use wildcards and there is also no Excludes sect...