MSI Wrapper for a VBScript?

  • Thread starter Thread starter maximillianx
  • Start date Start date
M

maximillianx

Has anyone put together an MSI wrapper for a VBScript? Does anyone have an
example MSI that I can take a look at?

I have pretty much zero experience with MSI, so any help is appreciated.

Thanks!
Rob
 
Hi,

This MAKEMSI script would do it:

#include "ME.MMH"
<$DirectoryTree Key="INSTALLDIR" Dir="c:\program files\SomeLocn"
CHANGE="\" PrimaryFolder="Y">
<$Files "*.vbs" DestDir="INSTALLDIR">


On top of that you'd want to do some once off customisation to set
user/company details, branding etc.

Bye,
Dennis Bareis
 
Back
Top