Quantcast
Channel: Hey, Scripting Guy! Blog
Viewing all articles
Browse latest Browse all 3333

PowerTip: Use PowerShell to See Latest Log Entry

$
0
0

Summary: Easily see the newest log entry by using Windows PowerShell.

Hey, Scripting Guy! Question How can I use Windows PowerShell to quickly check the most recent entry from a classic event log,
          such as the application, system, or security log?

Hey, Scripting Guy! Answer Use the Get-EventLog cmdlet and specify the –newest parameter, for example:

Get-EventLog application -new 1

   Or use the Get-WinEvent cmdlet:

Get-WinEvent application -max 1


Viewing all articles
Browse latest Browse all 3333

Trending Articles