Powershell to get certificates that have been applied to IIS
invoke-command -ComputerName $ComputerName -command {import-module WebAdministration ; Get-ChildItem IIS:\SslBindings} |
Select-Object PSComputerName, IPAddress, Port, Hostname, Thumbprint, Store