Archive: Inno Flags in NSIS


Inno Flags in NSIS
Hi guys, I'm fairly new to NSIS. I've been given the task of converting an INNO installer to NSIS and I'm pretty much done except for the flag conversion. I've searched all around and can't figure out what to do about flags such as:
uninsdeletekey
uninsdeletekeyifempty
nocompression (for specific files)
onlyifdoesntexist
ignoreversion
Any input will help. Thank you.


Have you tried using HM NIS Edit Inno Setup script converter? It might do those automatically.

If not, you're looking for SetCompress, SetOverwrite, and IfFileExists. Versions are ignored by default and must be compared manually, so there's no equivalent to ignoreversion.


Yep I tried the converter. It seemed to just ignore them. Thank you very much kichik. I'll give those Sets a try.