Creating an installer with WPF forms, packaged files and custom setup actions in C#

Posted by RodH257 on Stack Overflow See other posts from Stack Overflow or by RodH257
Published on 2010-04-27T01:37:01Z Indexed on 2010/04/27 1:43 UTC
Read the original article Hit count: 330

Filed under:
|

I'm trying to create a way of deploying a set of tools (which are add-ins to 3rd party software) to my users.

I would like to do the following:

  • User Enters Serial
  • Dlls in their directory structure is extracted to program files
  • a file is copied to a location in ProgramData (this registers my add-ins to the 3rd party application)
  • Online activation for software is performed

Can anyone point me into the right direction for this? I had a look at deployment projects in Visual Studio but I'm not sure if they are what I'm after. Main problem is they are ugly, I would like to have a nice WPF installer, and have a more custom experience. But I guess that can be traded off if its going to make things easier.

I was thinking, I could just make my own C# project that extracts the files, but I have no idea how to package them up and extract them all as part of one download (like the MSI files that the deployment projects create). Can anyone point me in the right direction?

© Stack Overflow or respective owner

Related posts about c#

Related posts about installer