Archive: how to use uninst.exe in separate folder of same application path


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...:)


WriteUninstaller? Note that it requires a full path not a relative one.

Stu


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.


$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

I changed the string value of $INSTDIR and now it's working fine.

Thanks a lot....:)