Quantcast
Channel: Hey, Scripting Guy! Blog
Viewing all articles
Browse latest Browse all 3333

PowerTip: Use PowerShell to Find Code-Signing Certificates

$
0
0

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 

 


Viewing all articles
Browse latest Browse all 3333

Trending Articles