Problems with ZipDLL.dll
Hi
I’m trying to use the zip DLL plugin. I’ve followed the instructions as per http://nsis.sourceforge.net/ZipDLL_plug-in
I have extracted ZipDLL.dll from the download and put it in :
C:\Program Files\NSIS\Plugins
I have also extracted zipdll.nsh and put that in:
C:\Program Files\NSIS\Include
I have also uncommented line 357 of zipdll.nsh as requested in the above link
However it doesn’t work as I get the following error:
!insertmacro: MUI_ZIPDLL_EXTRACTALL
!insertmacro: macro named "MUI_ZIPDLL_EXTRACTALL" not found!
This is the tiny test script:
**************************************************************
!include "MUI.nsh"
!include "zipdll.nsh"
!insertmacro MUI_LANGUAGE "English"
!insertmacro MUI_ZIPDLL_EXTRACTALL "c:\vm.zip" "c:\output" <ALL>
# name the installer
outFile "installer.exe"
section
sectionEnd
**************************************************************
Any Ideas?
Thanks