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 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
\m/
Cisco ASR Devices.pollerCisco ASR Devices
SWQL is built on the framework of SQL and as such supports most of the standard clauses as part of a query. A very simple example query is: SELECT Caption, IPAddress, Vendor, ResponseTime FROM Orion.Nodes Dissecting this query is relatively straightforward: show some fields (Caption, IP address, Vendor, and Response Time)…
Active SSL Tunnels-ASA.UnDPThis poller *should* display the number of Active SSL VPN (Anyconnect) Tunnels currently connected to your box. However, I tried it with my 5520 running 8.0.4 and for some reason I get a OID Not Supported. Here's my post in the forum: *EDIT* This is confirmed working with at least Interm release…
HP ProCurve Switches Hardening check.xmlGeneral hardening for HP switches