Read Memory Diagnostics Tool Results in Event Viewer in Windows 10  

    Read Memory Diagnostics Tool Results in Event Viewer in Windows 10

    Read Memory Diagnostics Tool Results in Event Viewer in Windows 10

    How to Read Memory Diagnostics Tool Results in Event Viewer in Windows 10
    Published by Category: Performance & Maintenance
    14 May 2023
    Designer Media Ltd

    How to Read Memory Diagnostics Tool Results in Event Viewer in Windows 10


    Memory problems can cause your PC to lose information or stop working. Windows 10 includes the Windows Memory Diagnostics Tool to help you identify and diagnose problems with memory when you suspect a PC has a memory problem that isn’t being automatically detected.

    This tutorial will show you how to read the Event Viewer log for Windows Memory Diagnostics Tool test results in Windows 10 and Windows 11.


    Contents

    • Option One: Read Memory Diagnostics Tool Results in Event Viewer
    • Option Two: Read Memory Diagnostics Tool Results in Command Prompt






    OPTION ONE

    Read Memory Diagnostics Tool Results in Event Viewer


    1 Press the Win + R keys to open Run, type eventvwr.msc into Run, and click/tap on OK to open Event Viewer.

    2 In the left pane of Event Viewer, expand open Windows Logs, click/tap on System, right click or press and hold on System, and click/tap on Find. (see screenshot below)

    Read Memory Diagnostics Tool Results in Event Viewer in Windows 10-memory_diagnostics_tool_event_log-1.jpg

    3 Type MemoryDiagnostics-Results into the Find dialog, and click/tap on Find Next. (see screenshot below)

    Read Memory Diagnostics Tool Results in Event Viewer in Windows 10-memory_diagnostics_tool_event_log-2.png

    4 You will see the test results of a selected MemoryDiagnostics-Results at the bottom of the middle pane in Event Viewer. If you like, you can click/tap on Find Next again to see the test results for another date and time a Windows Memory Diagnostics test was ran. (see screenshot below)

    If there were no other MemoryDiagnostics-Results found, click/tap on OK.
    Read Memory Diagnostics Tool Results in Event Viewer in Windows 10-memory_diagnostics_tool_event_log-4.png

    Read Memory Diagnostics Tool Results in Event Viewer in Windows 10-memory_diagnostics_tool_event_log-3.png

    5 When finished, you can close Event Viewer if you like.






    OPTION TWO

    Read Memory Diagnostics Tool Results in Command Prompt


    1 Open a command prompt.

    2 Copy and paste the command below into the command prompt, and press Enter. (see screenshot below)

    PowerShell "Get-WinEvent -FilterHashTable @{LogName='System'; Id=1101,1201} -ErrorAction Ignore | Where {$_.ProviderName -Match 'MemoryDiagnostics-Results'}"

    Read Memory Diagnostics Tool Results in Event Viewer in Windows 10-windows_memory_diagnostics_tool_log_command.png


    That's it,
    Shawn Brink






  1. Posts : 40
    Windows 10 Home
       #1

    of the 2 times ive run this test i cannot find the results anywhere! what could be going on?
    unfortunately, on both times i didnt see the screen when the results were finishing, so i dont know if there was an error or something...
      My Computer


  2. Posts : 68,894
    64-bit Windows 11 Pro for Workstations
    Thread Starter
       #2

    Hello Mikey,

    You might see if you may have better luck using MemTest86+.

    MemTest86+ - Test RAM | Windows 10 Tutorials
      My Computers


  3. Posts : 18,044
    Win 10 Pro 64-bit v1909 - Build 18363 Custom ISO Install
       #3

    Hello @Brink,

    I don't know if you want to add this to the Tutorial, but you can also extract the results of mdsched to the cmd prompt or a file.

    I ran all three parameters, Basic, Standard, & Extended.

    This is the code I used for BOTH the ID numbers associated with MemoryDiagnostics-Results . . .
    Code:
    Powershell.exe -command "& "Get-winevent -FilterHashTable @{logname='System'; id='1101'}^|?{$_.providername -match 'MemoryDiagnostics-Results'}
    Powershell.exe -command "& "Get-winevent -FilterHashTable @{logname='System'; id='1201'}^|?{$_.providername -match 'MemoryDiagnostics-Results'}
    These are the results which happen to be the SAME for Basic, Standard, & Extended . . .
    Code:
    TimeCreated : 05/09/2020 20:51:42
    Message     : The Windows Memory Diagnostic tested the computer's memory and detected no errors
    I hope this helps!
      My Computer


  4. Posts : 68,894
    64-bit Windows 11 Pro for Workstations
    Thread Starter
       #4

    Thank you @Paul Black. I'll get this added as another option to the tutorial tomorrow.

    Now added as option 2.
    Last edited by Brink; 06 Sep 2020 at 12:06.
      My Computers


  5. Posts : 768
    Windows 7
       #5

    Paul/Brink,

    There's no need for two separate commands, when you can filter both event ID's.
    Code:
    powershell.exe -command "& "Get-WinEvent -FilterHashTable @{logname='System'; Id=1101,1201}^|?{$_.ProviderName -match 'MemoryDiagnostics-Results'} -ErrorAction Ignore

    Code:
    ProviderName: Microsoft-Windows-MemoryDiagnostics-Results
    
    TimeCreated                      Id LevelDisplayName Message
    -----------                      -- ---------------- -------
    5/13/2023 9:57:41 PM           1201 Information      The Windows Memory Diagnostic tested the computer's memory and detected no errors
    5/13/2023 9:57:41 PM           1101 Information      The Windows Memory Diagnostic tested the computer's memory and detected no errors
    Last edited by garlin; 14 May 2023 at 02:43.
      My Computer


  6. Posts : 68,894
    64-bit Windows 11 Pro for Workstations
    Thread Starter
       #6

    garlin said:
    Paul/Brink,

    There's no need for two separate commands, when you can filter both event ID's.
    Code:
    powershell.exe -command "& "Get-WinEvent -FilterHashTable @{logname='System'; Id=1101,1201}^|?{$_.ProviderName -match 'MemoryDiagnostics-Results'} -ErrorAction Ignore

    Code:
    ProviderName: Microsoft-Windows-MemoryDiagnostics-Results
    
    TimeCreated                      Id LevelDisplayName Message
    -----------                      -- ---------------- -------
    5/13/2023 9:57:41 PM           1201 Information      The Windows Memory Diagnostic tested the computer's memory and detected no errors
    5/13/2023 9:57:41 PM           1101 Information      The Windows Memory Diagnostic tested the computer's memory and detected no errors
    Thank you mate. Now updated.
      My Computers


  7. Posts : 18,044
    Win 10 Pro 64-bit v1909 - Build 18363 Custom ISO Install
       #7

    garlin said:
    Code:
    powershell.exe -command "& "Get-WinEvent -FilterHashTable @{logname='System'; Id=1101,1201}^|?{$_.ProviderName -match 'MemoryDiagnostics-Results'} -ErrorAction Ignore
    In my case, using the above, I got the result . . .

    Read Memory Diagnostics Tool Results in Event Viewer in Windows 10-image.png

    To get round No events were found that match the specified selection criteria., I used this . . .
    Code:
    
    PowerShell.exe -Command "& "Get-WinEvent -FilterHashTable @{LogName='System'; Id=1101,1201} -ErrorAction Ignore ^| Where {$_.ProviderName -Match 'MemoryDiagnostics-Results'}

    Simplified version . . .
    Code:
    
    PowerShell "Get-WinEvent -FilterHashTable @{LogName='System'; Id=1101,1201} -ErrorAction Ignore | Where {$_.ProviderName -Match 'MemoryDiagnostics-Results'}"
      My Computer


  8. Posts : 768
    Windows 7
       #8

    Thanks for the noticing -ErrorAction belongs to Get-WinEvent.
      My Computer


  9. Posts : 18,044
    Win 10 Pro 64-bit v1909 - Build 18363 Custom ISO Install
       #9

    garlin said:
    Thanks for the noticing -ErrorAction belongs to Get-WinEvent.
      My Computer


 

Tutorial Categories

Read Memory Diagnostics Tool Results in Event Viewer in Windows 10 Tutorial Index Network & Sharing Instalation and Upgrade Browsers and Email General Tips Gaming Customization Apps and Features Virtualization BSOD System Security User Accounts Hardware and Drivers Updates and Activation Backup and Restore Performance and Maintenance Mixed Reality Phone


  Related Discussions
Our Sites
Site Links
About Us
Windows 10 Forums is an independent web site and has not been authorized, sponsored, or otherwise approved by Microsoft Corporation. "Windows 10" and related materials are trademarks of Microsoft Corp.

© Designer Media Ltd
All times are GMT -5. The time now is 22:44.
Find Us




Windows 10 Forums