What are the steps needed to create a VS 2008 MSI setup and deployment file to install a custom created certificate/key onto a client's machine?
Asked
Active
Viewed 2,913 times
1 Answers
2
- The proper way is to use Wix3 instead of Visual Studio Deployment Project, Wix has the Certificate element which is pretty robust.
- If you still want to use Visual Studio Deploy Project then take a look at this answer on how to install certificates using C#. You will need to warp this code inside an Installer class and sequence it inside the deploy project.

Community
- 1
- 1

Shay Erlichmen
- 31,691
- 7
- 68
- 87
-
WiX is a great solution for this. Thank you! – FarrEver Apr 22 '09 at 15:41