Problem unzipping included fiel
Greets!

I have a newbie question. I am trying to make an Installer (if you can call it that way), that unzips a file. Now I seem to have the file included I want to be unzipped, yet when the Installer is thorugh, it only puts an empty folder by the right name to the desired path. No idea what the script requires, I am working trial and error.

This is the section:

section

File "misc.zip"

sectionend

section

ZipDLL::extractall "misc.zip" "D:\"

SetDetailsPrint textonly
DetailPrint "Das ZIP File wird dekomprimiert"
SetDetailsPrint listonly

SectionIn 1 2 3 RO
SetOutPath $INSTDIR
RMDir /r $SMPROGRAMS\NSIS

SectionEnd

As I said, when compiling, the zip file is compressed, but on D:\ I only get a folder named misc with no content.

Thansk for your help,

Moe