Wednesday, March 2, 2016

Windows 10 and WindowsUpdate.log

The WindowsUpdate.log file is still present within Windows 10, but no data is contained within it.

windows10_update_log_1

To view dates and times of update traffic, launch an elevated PowerShell session and use the cmdlet Get-WindowsUpdateLog.

windows10_update_log_2 

A .log file should be created on the desktop of the account being used.

windows10_update_log_3

windows10_update_log_4

To “clean up” the output, use the following command:

(Get-Content "WindowsUpdate.log") -notmatch "1600/12/31" | Out-File -Encoding ASCII "WindowsUpdateCleaned.log"

windows10_update_log_5

windows10_update_log_6

Additional details on this topic may be found at https://blogs.technet.microsoft.com/askcore/2015/09/28/cross-post-windows-10-windowsupdate-log-and-how-to-view-it-with-powershell-or-tracefmt-exe/.

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.