Reputation: 3
Hello every1 my first ever question so go easy lol i am trying to make an installer that installs .net2.0 then the .net mysql connector then .net4.0
i need to do it in this order and i need them all to be silent and
lets say .net 2 gets half way done and somehow the installer gets quitted i need it to repair instead of fresh install but i need it to figure it out by itself.The only languages i know a bit about is c++ and c# if there is any way that would be very good! if people need more info go ahead and ask
Upvotes: 0
Views: 307
Reputation: 676
You could also look into Wix, which is a xml based scripting language, pretty easy to get started with, I think.
Just remembered that I once had a simular "task", I solved it using wix. I made an installer using Wix and created a bootloader that contained the software that was to be installed.
Furthermore, if an UI is needed for the scripting wixeditor is ok.
A good getting started tutorial for Wix, Wix tutorial
Upvotes: 1
Reputation: 26922
Have you looked at already existing installer systems?
Perhaps Nullsoft, or Inno Setup, suits your needs.
You can script them according to your requirements.
Upvotes: 0