trying another numbering remedy

This commit is contained in:
jaimeo 2018-07-19 15:23:36 -07:00
parent eed3b08034
commit 3e06485387

View File

@ -100,10 +100,10 @@ If you know that devices are experiencing stop error crashes that do not seem to
You can use the following Windows PowerShell snippet to summarize recent occurences of Event 1001. Most events should have a value for BucketID (a few intermittent blank values are OK, however). You can use the following Windows PowerShell snippet to summarize recent occurences of Event 1001. Most events should have a value for BucketID (a few intermittent blank values are OK, however).
```powershell ```powershell
$limitToMostRecentNEvents = 20 $limitToMostRecentNEvents = 20
Get-WinEvent -FilterHashTable @{ProviderName="Windows Error Reporting"; ID=1001} | Get-WinEvent -FilterHashTable @{ProviderName="Windows Error Reporting"; ID=1001} |
?{ $_.Properties[2].Value -match "crash|blue" } | ?{ $_.Properties[2].Value -match "crash|blue" } |
% { [pscustomobject]@{ % { [pscustomobject]@{
TimeCreated=$_.TimeCreated TimeCreated=$_.TimeCreated
@ -116,8 +116,9 @@ Get-WinEvent -FilterHashTable @{ProviderName="Windows Error Reporting"; ID=1001}
}} | Select-Object -First $limitToMostRecentNEvents }} | Select-Object -First $limitToMostRecentNEvents
``` ```
The output should look something like this: The output should look something like this:
[![Typical out put of this PowerShell snippet](images/device-reliability-event1001-PSoutput.png)](images/device-reliablity-event1001-PSoutput.png) [![Typical out put of this PowerShell snippet](images/device-reliability-event1001-PSoutput.png)](images/device-reliablity-event1001-PSoutput.png)
6. Check that some other installed device, app, or crash monitoring solution is not intercepting crash events. 6. Check that some other installed device, app, or crash monitoring solution is not intercepting crash events.