How to find certificates by thumbprint or name with powershell

How to find certificates by thumbprint or name with powershell 

 

Get-ChildItem -path 'Cert:\*086760bb47ba6c592d05b53b477635d924d5952b' -Recurse | Format-List
Get-ChildItem -path Cert:\* -Recurse | where {$_.Subject -like '*chuck*'}

posted @ 2021-09-07 17:09  ChuckLu  阅读(34)  评论(0)    收藏  举报