Archive: Run VB script from NSIS


Run VB script from NSIS
Hi All,

We need register application in MS Firewall trusted list during install. There is easy way to do this - run VB script (MSDN sample in attach) from installer. How to do that? Any suggestions?

Thanks


Tried using Exec, ExecWait or even nsExec::Exec?

-Stu


I use ExecWait "wscript.exe $INSTDIR\MillVersion.vbs"


try ExecWait "$INSTDIR\MillVersion.vbs"


Originally posted by Comm@nder21
try ExecWait "$INSTDIR\MillVersion.vbs"
tested this and it works as well...

Originally posted by Dick4
tested this and it works as well...
Thanks
It's work well.