0

We have WPF application which is created in .NET4.0. We have upgraded our application to .NET4.5 with a new version. Now, we are getting problem to install upgraded software in user's system. There are few thousands user using our app. It will take time and need human effort to install s/w in each and evryone's system.

Is there any automatic tool which can help us in deployment? How managesoft is working?

Regards, Ambarish

1 Answers1

0

We used clickonce (http://msdn.microsoft.com/en-us/library/t71a733d%28v=vs.80%29.aspx) to deliver our WPF application, and all the related dependencies. It worked quite well, even with frequent automated upgrades.

Lorenzo Dematté
  • 7,638
  • 3
  • 37
  • 77
  • This is not usable for our system. Our system is dependent on C:\AppFolder which store exe and all required dlls. So, we have to make windows installer. Is there any way to make windows installer automatic? – user1949532 Jan 23 '13 at 16:04
  • Storing a program in a fixed folder is not a very good decision.. what if the user does not have a C: drive? :) Of course, you can make a window installer, which can also handle upgrade; it will not be that easy though. We used both the installer generated by VS2008 and WiX (several years ago, now) and it was not pleasant. Maybe they got better now.. – Lorenzo Dematté Jan 23 '13 at 16:27