Summary: Find events from objects by using Windows PowerShell.
How can I use Windows PowerShell to find what events are offered by a process?
Use Get-Process to retrieve an instance of the process, pipe the results to Get-Member,
and specify a MemberType Event:
notepad
Get-Process notepad | Get-Member -MemberType Event