Share via

Certificate Event in powershell

ADVIR 1 Reputation point
2020-09-30T20:47:21.317+00:00

I am trying to view the certificate install and delete in powershell but when I use powershell command Get-EventLog -LogName it wont provide me the option for Microsoft-Windows-CertificateServicesClient-Lifecycle-System/Operational, where information is available.

Any guide?

Windows for business | Windows Server | User experience | PowerShell
0 comments No comments

6 answers

Sort by: Most helpful
  1. ADVIR 1 Reputation point
    2020-10-01T20:30:54.53+00:00

    @Rich Matheisen Thank you, but this is not helpful, I am not getting the details information which is under friendly view or xml view, because description only says please refer to details for more information.

    Was this answer helpful?


  2. Rich Matheisen 48,116 Reputation points
    2020-10-01T14:07:09.323+00:00

    If you're no familiar with using XPATH to query XML then you might want to try using the Get-WinEventData script: Get-WinEventData-Extract-344ad840

    Was this answer helpful?

    0 comments No comments

  3. ADVIR 1 Reputation point
    2020-10-01T13:03:39.337+00:00

    Thank you so much it really help, Also as per event it says check detail for more information "Please refer to the "Details" section for more information" how I can that information in Powershell? including same get-winevent

    Was this answer helpful?

    0 comments No comments

  4. Anonymous
    2020-10-01T04:07:09.87+00:00

    Hi,

    Get-EventLog work only on Windows classic event logs such as Application, System, or Security. To get logs that use the Windows Event Log technology in Windows Vista and later Windows versions, use Get-WinEvent.

    Get-WinEvent -ListLog Microsoft-Windows-CertificateServicesClient-Lifecycle-System/Operational  
    

    Best Regards,
    Ian

    ============================================

    If the Answer is helpful, please click "Accept Answer" and upvote it.
    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.

    Was this answer helpful?

    0 comments No comments

  5. Rich Matheisen 48,116 Reputation points
    2020-09-30T20:58:24.697+00:00

    Use Get-WinEvent instead.

    Was this answer helpful?

    0 comments No comments

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.