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

PowerTip: Use PowerShell to Get Details about Setup Log

$
0
0

Summary: Use Windows PowerShell to get detailed information about the setup log.

Hey, Scripting Guy! Question How can I use Windows PowerShell to find information about the status of the setup log on my computer?

Hey, Scripting Guy! Answer Use the Get-WinEvent cmdlet, select the setup log, and then pipe the output to the Format-List cmdlet:

Get-WinEvent -ListLog setup | Format-List *


Viewing all articles
Browse latest Browse all 3333

Trending Articles