Skip to content
⌘ NSIS Forum Archive

NSIS 2.44 doesnt remove plugins dir on user abort

3 posts

michaelw#

NSIS 2.44 doesnt remove plugins dir on user abort

Hello,

I finally got a beatiful installer working. The solely (small) problem is the installer leaving the empty pluginsdir on uninstall. Is this a NSIS specific problem or is this due to some problem in my installer?

The installer copies several of my own DLLs into the pluginsdir and calls functions in these DLLs. All the DLLs are removed, only the empty pluginsdir remains.

TIA
Michael
Anders#
maybe $pluginsdir is the current directory, try using SetOutPath $temp before the installer ends, or extract your dll's with File "/OName=$pluginsdir\file1.dll" file1.dll