top of page

PowerShell - Get certificate Information from text list of servers

  • Writer: Jon Boyette
    Jon Boyette
  • Jan 10, 2022
  • 1 min read

This saved as a .ps1. grabs machines from c:\temp\servers.txt and collects the x509 certificate information for each server, Outputs to c:\temp\CertificatesFromListedServers.csv

$a = Get-Content C:\temp\servers.txt

Invoke-Command -ComputerName $a -Scriptblock{

Get-ChildItem Cert:\LocalMachine\root | Where-Object {$_ -is [System.Security.Cryptography.X509Certificates.X509Certificate2] -and $_.NotAfter -lt (Get-Date)} | Select-Object -Property PSComputerName,FriendlyName,Subject,NotBefore,NotAfter,Issuer,Thumbprint

} | Export-Csv c:\temp\CertificatesFromListedServers.csv



 
 
 

Recent Posts

See All
PowerShell - List All Domain SPNs

Save as same List_ALL_SPNs.ps1 or similar, this LDap calls the Domain for all Service Principal names and accounts related #Build LDAP...

 
 
 
PowerShell - Start-Monitoring

This is a great script used to Monitor and Email if a server is up or down, once ran, and smtp and from address is set, then run:...

 
 
 

Comments


Post: Blog2 Post
  • Facebook
  • Twitter
  • LinkedIn

©2022 by Boyette Technical Services. Proudly created with Wix.com

bottom of page