4

I have a script which I want to deploy to some people in my group, but there are three dependencies ( python2.7, ExchangeCDO, pywin32). Is there a way that I can create one installation file that has these three installation dependencies bundled into exactly one file? e.g. an .exe or an .msi.

Ross Rogers
  • 4,807

1 Answers1

5

I've done something similar before by using NSIS. NSIS (Nullsoft Install System) is an open-source installation wizard tool. You can easily create a bundled installer which includes and runs all of your dependencies. For example, the installer for Firefox (and many other projects) uses NSIS.

nhinkle
  • 37,661