Discover SSL Certificates
I'm looking for a way to discover the SSL certs on our Win 7 devices via KACE. Any ideas?
0 Comments
[ + ] Show comments
Answers (1)
Please log in to answer
Posted by:
SMal.tmcc
9 years ago
you can create a custom inventory rule to run powershell and get that info into inventory
powershell -Command Get-ChildItem -Recurse Cert:
Comments:
-
Thanks! This put me on the right track. We were just looking for the thawte SSL CA - G2 Intermediate cert so I ended up going with:
ShellCommandTextReturn(cmd /c powershell "Get-ChildItem -Recurse Cert:\LocalMachine\authroot\AADBBC22238FC401A127BB38DDF41DDB089EF012 | format-list -property *") - rcallbeck 9 years ago