Archive: IInternetSecurityManager via NSIS?


IInternetSecurityManager via NSIS?
Is there a way (or plugin) to access the IInternetSecurityManager API in NSIS?


Use the System plug-in to work with the interface.

Edit: Really that is one of 4 options. The other 3 are:

* write a DLL and call that with the System plug-in.
* write a plug-in DLL and call it with the NSIS plug-in syntax.
* write a console application and run it with ExecDos::exec /TOSTACK.

I tend to use the 4th option when working with 64/32-bit interop.

Stu