Can KACE see what certificates are installed on computers?
We have a few certificates that we install for website access. Is there a way that KACE and track that and list that in the inventory details?
1 Comment
[ + ] Show comment
Answers (1)
Please log in to answer
Posted by:
AbhayR
6 years ago
If you can fetch the certs using a powershell command like"Get-ChildItem -Recurse Cert:" then you can use Custom Inventory rule to run the command in powershell and display the result under Inventory.
Comments:
-
Build a Powershell Script to output a TXT file with all certificates installed for a Machine:
$certs = Get-ChildItem cert:\LocalMachine -Recurse | Where-Object {-not $_.PSIsContainer} | Select *
Write-Host ("There were {0} certificates" -f ($certs | Measure-Object).Count)
$certs | Out-File c:\certs.txt
Then use a Task 2 on that script to upload that certs.TXT file to the Inventory - Channeler 6 years ago
If it's possible, you could create a Custom Inventory Rule to track your certs. - Channeler 6 years ago
Do you know if that certlm tool saves the info about certificates on the registry?
Or If you are able to make certlm print a list of certificates to a TXT file, you could ask the agent to pull that TXT file and add it to each computer device detail page. - Channeler 6 years ago