Powershell中可以使用Cert:驱动器访问你的证书库。
你可以使用它获得指定条件的证书。下面将列出所有今天以前过期的证书:
$today = Get-Date Get-ChildItem -Path cert:\ -Recurse | Where-Object { $_.NotAfter -ne $null } | Where-Object { $_.NotAfter -lt $today } | Select-Object -Property FriendlyName, NotAfter, PSParentPath, Thumbprint | Out-GridView
原文地址:Finding Expired Certificates
本文链接: https://www.pstips.net/finding-expired-certificates.html
请尊重原作者和编辑的辛勤劳动,欢迎转载,并注明出处!
请尊重原作者和编辑的辛勤劳动,欢迎转载,并注明出处!