Robert Karl
Robert Karl

Reputation: 7816

How do I write an installer for a Windows SDK in Python?

I understand that NSIS supports plugins, but I can't find an NsPython tutorial.

Maybe first I should ask: if I can run Python code from NSIS, is it a good idea to script my installer in Python (instead of explicitly managing a stack in an NSIS script)?

And secondly: are there any good tutorials?

Alternatively: Is there another appropriate Windows installer scripting environment? I don't think wix will do the trick.

Upvotes: 1

Views: 292

Answers (1)

Kyle Gagnet
Kyle Gagnet

Reputation: 2314

If you download the plugin archive that you linked, there is a readme file that describes the plugin's API as well as an example NSIS installer that uses the plugin.

Upvotes: 1

Related Questions