March 5th, 2013

PowerTip: Use PowerShell to Find Code-Signing Certificates

Doctor Scripto
Scripter

Summary: Learn how to use Windows PowerShell to find code-signing certificates on the local computer.

Hey, Scripting Guy! Question How can I find if a computer contains a code-signing certificate in its local certificate store?

Hey, Scripting Guy! Answer Use the Certificate PS Drive and perform a recursive search by using the Get-ChildItem cmdlet while specifying the –CodeSigningCert parameter.

Get-ChildItem -Path cert: -Recurse -CodeSigningCert 

 

Author

The "Scripting Guys" is a historical title passed from scripter to scripter. The current revision has morphed into our good friend Doctor Scripto who has been with us since the very beginning.

0 comments

Discussion are closed.

Feedback