InstallDir "c:\test1234"
But the user browses to c:\pics, it will then try to install to c:\pics\test1234.
Is there a way to take the path they browse to, without appending the InstallDir (in other words, without the "test1234" subfolder in the above example)?
Here's my stripped down sample script:
;Include Modern UI
!include "MUI.nsh"
Name "Teste123"
OutFile "Test_Installer.exe"
;Default installation folder
InstallDir "c:\test1234"
;Pages
!insertmacro MUI_PAGE_DIRECTORY
;Installer Sections
Section "ASDF" SecDummy
SetOutPath "$INSTDIR"
SectionEnd