Hello everyone! This is my first post! I wanted to ask about the existence of a table that has all the event ids of powershell and powershell operational. If said table does not exist, is there a way to obtain that list of event ids? I need to contemplate most of these id
Not strictly Powershell related, but you can use the Windows utility wevtutil to get them.
This will give you all event log providers with powershell in the name
wevtutil ep | Select-String -Pattern powershell
To dump possible raised events, example on the Microsoft-Windows-Powershell provider
wevtutil gp Microsoft-Windows-Powershell
Found this in a google search, not sure how this link will behave as it references a PDF … but maybe worth a shot. The list the related Event IDs in the document.