how can i install two certificates (pfx with password) during my setup is installing on pc? I need Two certificates located on personal->certificates because desktop program is used for all users on this pc.
I'm using .net 3.5
Thanks.
how can i install two certificates (pfx with password) during my setup is installing on pc? I need Two certificates located on personal->certificates because desktop program is used for all users on this pc.
I'm using .net 3.5
Thanks.

This below will extract the Public & Private key from the
.PFXfile and parse it into anX509Certificate2object (X509Certificatetype does not support Private keys and is unable understand V2 & V3 properties). You then passX509Certificate2object to the local certificate repository which is currently set toLocalMachineas I'm guessing that's where you want it according to the image you attached.I recommend that you read this post by Paul Stovell before diving head first as permissions could be nightmare especially within a domain environment (Active Directory).