Minbas
22nd September 2006 01:47 UTC
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.
kichik
22nd September 2006 09:51 UTC
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.
Minbas
25th September 2006 02:30 UTC
Yep I tried the converter. It seemed to just ignore them. Thank you very much kichik. I'll give those Sets a try.