GoldkinG
10th July 2012 12:02 UTC
how to use uninst.exe in separate folder of same application path
Hi,
In my application i have to keep my uninst.exe file in uninstall folder of the application path.
I tried but i'm not getting the uninst.exe file and uninstall folder. how to place..
Thanks in advance...:)
Afrow UK
10th July 2012 13:35 UTC
WriteUninstaller? Note that it requires a full path not a relative one.
Stu
saran4u
20th July 2012 11:31 UTC
ya I used the same thing..
Actually i want to create my uninstaller inside the uninstall folder in the Application path.
It's creating but the uninstaller not removing the files from the application path.
Anders
20th July 2012 19:08 UTC
$instdir in the uninstaller is the folder the uninstaller is in. If you put it in a subfolder you can do:
function un.oninit
strcpy $instdir $instdir\..
functionend
saran4u
23rd July 2012 05:48 UTC
I changed the string value of $INSTDIR and now it's working fine.
Thanks a lot....:)