\m/
I wrote about this script (and others) on this Product Blog: Manage and Monitor PowerShell Scripts
But here is the script if you need it immediately.
$AllCertificates = Get-ChildItem -Path Cert:\LocalMachine\My -Recurse
# Create an empty list to keep the results
$CertificateList = @()
ForEach ( $Certificate in $AllCertificates )
{
# Check to see if this is a "folder" or a "certificate"
if ( -not ( $Certificate.PSIsContainer ) )
# Certificates are *not* containers (folders)
# Get the important details and add it to the $CertificateList
$CertificateList += $Certificate | Select-Object -Property FriendlyName, Issuer, Subject, Thumbprint, NotBefore, NotAfter
}
$CertificateList | Sort-Object -Property FriendlyName
Hi Kevin,
Where can I find the text of that Powershell script? I like to try it out, can you provide a link or the text?
Thanks
I wanted to share a new dashboard a co-worker ( @mblackburn ) came up with to help us better view groups of interfaces and various metrics for each. Using a single HTML widget, we are able to visually compare numerous different interfaces by populating each interface dataset onto its own graph. We are able to view…
PALO-ALG - Logging.xmlPalo Alto Networks ALG Security Technical Implementation Guide :: Version 2, Release: 3 Benchmark Date: 27 Oct 2022
Alert Cleared.htmlHello, I would like to share the HTML template details we have prepared so that Solarwinds alarms can become more meaningful. It can list alarm object details and connected device details separately in HTML template. Except for object and device details, you can easily add custom property information…
Cisco ASR Devices.pollerCisco ASR Devices