Welcome to the navigation

In tempor amet, elit, ut id aliquip laboris adipisicing cillum commodo in irure ut minim sunt occaecat dolor non et nostrud qui cupidatat culpa exercitation. Ad commodo eu ipsum reprehenderit sed occaecat consectetur aute excepteur incididunt dolor magna sint mollit cillum ullamco et eiusmod elit, sunt est qui dolor aliquip

Yeah, this will be replaced... But please enjoy the search!

Get all certificates using PowerShell

Categories Tags

I needed a quick way to browse all my certificates without using a GUI. 

Set-Location cert:\
 
Get-ChildItem -Recurse `
    | Where-Object { $_.Thumbprint } `
    | select { $_.PSParentPath.Replace('Microsoft.PowerShell.Security\Certificate::', ''), $_.Subject } 

This will print the Certificate Subjects and it's location.