Managing X.509 certificates installed on service machine
In addition to how to generate test X.509 certificates, another thing WCF developers might also be interested in is how we can manage the X.509 certificates already installed on a certain Windows machine.
In this recipe, we will demonstrate three common means for looking up and viewing certificate information on a given machine.
How to do it...
Now, let's take a detailed look at the certificate management means one by one.
Use certificates MMC snap-in.
The first and the most commonly used means is using the certificates MMC snap-in to lookup certificates. MMC (Microsoft Management Console) is a component of Windows 2000, and later Windows NT-based operating systems that provides system administrators and advanced users with a flexible interface to configure and monitor the system.
Here are the detailed steps for opening the certificates MMC snap-in component for looking up certificates:
Open a command prompt window.
Type
mmc
and press the...