Use .Net to create silent msi for other packages

UG Guru

Newcomer
Joined
Oct 18, 2005
Messages
9
Is it possible to create an msi installer for a program that already exists?
I'm trying to silently install programs like Adobe Photoshop 6 that didn't ship with an msi installation or the option to silently install.

Thanks
 
I think what you want to do is known as bootstrapping. I'm pretty sure this is possible with the .Net installer, but I don't have much experience with it. I've bootstrapped the .Net framework and windows installer but not much else. In VS 2005 I'm pretty sure there are some simple options for dependencies and bootstrapping. For VS 2003 I seem to recall using a tool by Microsoft to get the job done. I don't have links for you (sorry) but hopefully that'll be enough keywords to get you started.

On a side note, are you allowed to distribute Photoshop the way you are trying to distribute it (without the CD I mean)? Be careful about legal stuff with that.
 
I'm not actually distributing photoshop. I'm Creating a utlilty that can install software over a network for systems admin purposes. Similar to GPO but with some improvements.
Installs have to be quiet with it as users can't interact with the install process. For old progs with no silent install option or with no msi file I need to create an msi to do the work.

Thanks for the info. I'll do a bit of researching.

Cheers,



mskeel said:
I think what you want to do is known as bootstrapping. I'm pretty sure this is possible with the .Net installer, but I don't have much experience with it. I've bootstrapped the .Net framework and windows installer but not much else. In VS 2005 I'm pretty sure there are some simple options for dependencies and bootstrapping. For VS 2003 I seem to recall using a tool by Microsoft to get the job done. I don't have links for you (sorry) but hopefully that'll be enough keywords to get you started.

On a side note, are you allowed to distribute Photoshop the way you are trying to distribute it (without the CD I mean)? Be careful about legal stuff with that.
 
Back
Top