0

I'm trying to modify an MSI using Visual Studio 2008. I have the Project with the code as well. The install has a pop-up where it request for some information but there are no properties I can set in the msiexec command to set it. I have never done this before and can't really find any help but I basically want to create a property that can be assigned for that pop-up window. Looking at the project in Visual Studio I don't see any reference to the windows in the MSI installation so not sure how to do this.

Any help would be appreciated.

Thanks

Joel Coehoorn
  • 399,467
  • 113
  • 570
  • 794
Bruce227
  • 893
  • 5
  • 14
  • 25

1 Answers1

1

I'd suggest grabbing WiX and using Dark to decompile your existing MSI into a WiX script. Then you can refer to Good resources for learning how to create MSI installers from WiX for more info. Visual Studio setup projects are deprecated at this point, so migrating this to WiX will be worth your time.

Community
  • 1
  • 1
Jim Lamb
  • 25,355
  • 6
  • 42
  • 48