i would like to customize the destination folder of the "MUI_PAGE_DIRECTORY".
Here is my code :
Section
IfFileExists D:\*.* +1 nodiskD
CreateDirectory "D:\abracadabra"
iferrors nodiskD
RMDir /r "D:\abracadabra"
StrCpy $0 "D:\DKS"
;MessageBox MB_OK "$0"
goto +3
nodiskD:
;Default installation folder is windows' one
StrCpy $0 "%SYSTEMDRIVE%\DKS"
SectionEnd
InstallDir $0
But "InstallDir" doesn't work even with "$0" instead of $0
So here is my first questions :
Does anybody could tell my how to make my code works fine ???
I've found in that forum a way to customize the "MUI_PAGE_DIRECTORY" using "!define MUI_PAGE_CUSTOMFUNCTION_SHOW ShowDirectoryPage" as shown here :
Are you a developer who uses NSIS to distribute your application? Are you a Winamp plug-in developer who wants to use NSIS to distribute your plug-in? Have suggestions for other people like you? This is the place.
But i didn't found any way to customize the "Destination folder".
So here ic mu second question :
How to customize the "Destination Folder" ?
Thanks for reading that topic ...
Bert