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
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@nder21tested this and it works as well...
try ExecWait "$INSTDIR\MillVersion.vbs"
Originally posted by Dick4Thanks
tested this and it works as well...