PowerTip: Find PowerShell Logging Info

Summary : Use a Windows PowerShell cmdlet to retrieve logged information about Windows PowerShell.
How can I easily find logged information about Windows PowerShell?
Use the Get-WinEvent cmdlet and look for a LogName with powershell in the name:
Get-WinEvent -LogName *powershell*...(read more)