/build/static/layout/Breadcrumb_cap_w.png

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
  • Are you able to tell if the certificate is installed by browsing to a Folder\Path or checking the Windows Registry?

    If it's possible, you could create a Custom Inventory Rule to track your certs. - Channeler 5 years ago
    • We can see it in certlm - abratton 5 years ago
      • mmmmm..... that would be like asking KACE if a Word Document has the word 'California' on it... I don't think that is possible.

        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 5 years ago

Answers (1)

Posted by: AbhayR 5 years ago
Red Belt
1
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 5 years ago
 
This website uses cookies. By continuing to use this site and/or clicking the "Accept" button you are providing consent Quest Software and its affiliates do NOT sell the Personal Data you provide to us either when you register on our websites or when you do business with us. For more information about our Privacy Policy and our data protection efforts, please visit GDPR-HQ