Skip to content
⌘ NSIS Forum Archive

Drag 'n drop

3 posts

Gluck#

Drag 'n drop

Sorry for the duplicate post, I have seen right now this is the correct section...

I'm a newby and I'm learning scripting NSIS to make portable application with a launcher.

As a test, I have downloaded a software "Batch Media Info Supporter" from here: https://sites.google.com/site/tsdark...ainfosupporter

It is simple so should be easy to work with.

I have written in the .nsi script:

WindowIcon Off
SilentInstall Silent
AutoCloseWindow True
OutFile Batch.exe

Section
ExecWait "$EXEDIR\App\BatchMediaInfoSupporter.exe"
SectionEnd

The code is right. Compiled right.

If I open the program in the original folder everything is right, if I open BMIS from the launcher, everything is right but drag 'n drop not works...

WHY???

(I have seen the same behaviour in other programs too)...

Thanks.
Anders#
Dragging to elevated programs is blocked by UAC. Add "RequestExecutionLevel user" to your script...