Hi everyone!
I need to make an installer that must be simply an update.
So it must locate the installation folder of the software and sobstitutes some files.
How can I locate the installation folder of the software ?
Thanks in advance
[NSIS] Update installer
2 posts
Well, I noticed that if i put in the installer file the following command (to write the installation path in windows registry)
If there is any other better solution please let me know.
Thanks again
-Fulk-
In an update installer I can recall it with
WriteRegStr HKCU "Software\MYSOFTWARE" "" $INSTDIR
so that in INSTDIR variable I have the path of the software.
ReadRegStr $INSTDIR HKCU "Software\MYSOFTWARE" ""
If there is any other better solution please let me know.
Thanks again
-Fulk-