PowerTip: Use PowerShell to Find Code-Signing Certificates

Doctor Scripto

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 

 

0 comments

Discussion is closed.

Feedback usabilla icon