Generating a list of all self-signed certs?
问题 I am trying to generate a list of all self-signed certificates in an environment using Powershell. I need this section of my script to be directed toward multiple machines(IP addresses), but am unaware of how to do so: dir cert: -Recurse | where { $_.subject -ne $ null} | where { $_.subject -eq $ _.issuer} | Export-Csv -NoTypeInformation -Encoding UTF8 -delimiter ';' -path .\ssc_export Powershell isn't my strong suit, but it's all I have available to me in this environment. Any insight would