Created
November 7, 2018 19:16
-
-
Save uuklanger/2e11f401ef80c31603dc8f6e97cc0fa9 to your computer and use it in GitHub Desktop.
Query the Windows 10 Event Log for any instance id of 40960
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Get-EventLog -LogName "System" -Newest 100 -InstanceId 40960 | |
write-host "Press any key to continue..." | |
[void][System.Console]::ReadKey($true) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment