mirror of
https://github.com/MicrosoftDocs/windows-itpro-docs.git
synced 2025-06-07 01:57:21 +00:00
trying another numbering remedy
This commit is contained in:
parent
eed3b08034
commit
3e06485387
@ -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:
|
||||||
|
|
||||||
[](images/device-reliablity-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.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user