vote up 1 vote down star

I need to be able to remove a specific certificate from each PC in my organization. Yes, I could go seat-to-seat, but I have until Thursday to pull it off, and I don't have the manpower to go seat-to-seat.

Is there a programmatic way of doing this using C#?

flag

2 Answers

vote up 1 vote down check

I don't think you need to crank out any C# - take a look at certmgr.exe /del.

If you really do want to write some C# today to do this, then take a look at X509Store.Remove.

link|flag
I'm looking at those pages. Unfortunately, they don't tell me how to access (if at all) "trusted Root Certification Authorities". I can't see how to get to that store. – Jerry Mar 16 at 22:21
The Trusted Root Certification Authorities store is just called "root". Or are you saying you having a "permission denied" problem? – Martin Carpenter Mar 16 at 22:33
Nope.. I didn't know it was called ROOT. That solved everything. It's the little details that kill you. – Jerry Mar 16 at 22:40
vote up 0 vote down

There's an example in MSDN (click here)

I think the example is self-explanatory, but here's the excerpt:

using System;
using System.Security.Cryptography;
using System.Security.Cryptography.X509Certificates;
using System.IO;

public class X509store2
{
	public static void Main (string[] args)
	{
		//Create new X509 store called teststore from the local certificate store.
		X509Store store = new X509Store ("teststore", StoreLocation.CurrentUser);
		store.Open (OpenFlags.ReadWrite);

		...

		store.Remove (certificate1);
		store.RemoveRange (collection);

		...

		//Close the store.
		store.Close ();
	}    
}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.