mksoft_
24th January 2008 16:06 UTC
"the sofware may have not installed correctly" ?
Hello
On vista, the NSIS installer of my software warns the users with a message (see attached picture)
(it's in french but i think it says something like "the sofware may have not installed correctly")
How can i get rid of this?
Thanks a lot :)
Martial
Anders
24th January 2008 16:21 UTC
use RequestExecutionLevel to disable vista's ickyness, or using SetErrorLevel 0 in .onInstSuccess might work aswell
lovespy108
25th January 2008 02:08 UTC
I know your problem.I met that before!!
you must install NSIS 2.34.
Then put this code at the top of your script.
------------------------------------
RequestExecutionLevel admin
-----------------------------------
you can know 'RequestExecutionLevel' in the help documentation of NSIS 2.34.
mksoft_
2nd February 2008 13:36 UTC
thanks a lot !
It did fix the problem :)