Id 1202 ((free)) | Windows Memory Diagnostic Event
Author: AI Research Team Date: April 14, 2026 Subject: Windows System Log Analysis – Memory Diagnostic Events 1. Abstract Windows Event ID 1202, generated by the source MemoryDiagnostics-Results , is a critical informational log entry that signifies the successful completion of the Windows Memory Diagnostic (WMD) tool. This paper examines the trigger conditions, event structure, result interpretation, and systematic troubleshooting steps associated with Event ID 1202. Understanding this event is essential for system administrators and forensic analysts to determine whether reported system instability (e.g., crashes, application faults) originates from physical RAM failure. 2. Introduction When a Windows operating system experiences frequent blue screen errors (BSODs), application crashes, or file corruption, physical memory (RAM) is a primary suspect. The built-in Windows Memory Diagnostic tool performs a series of read/write tests on RAM. Upon completion, it logs a definitive result via Event ID 1202 in the System log. This event serves as the official diagnostic verdict, eliminating guesswork in hardware vs. software fault isolation. 3. Event Details | Field | Value | |-------|-------| | Event ID | 1202 | | Source | MemoryDiagnostics-Results | | Log | System | | Level | Information | | Opcode | Info | | Task Category | None | | User | SYSTEM | | Computer | (Target machine name) | Typical Event Message: "The Windows Memory Diagnostic tested the computer's memory and detected no errors" or "The Windows Memory Diagnostic tested the computer's memory and detected hardware errors." 4. Result Interpretation Event ID 1202 contains one of three possible outcomes:
Get-WinEvent -FilterHashtable @LogName='System'; ID=1202 | Export-Csv -Path C:\memdiag_results.csv Symptom: Windows 11 workstation crashes to MEMORY_MANAGEMENT BSOD every 2–3 hours. windows memory diagnostic event id 1202
Get-WinEvent -FilterHashtable @LogName='System'; ProviderName='MemoryDiagnostics-Results' | Select-Object TimeCreated, Message -First 1 To export all 1202 events to a CSV: Author: AI Research Team Date: April 14, 2026
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event"> <System> <Provider Name="MemoryDiagnostics-Results" /> <EventID Qualifiers="0">1202</EventID> <Level>4</Level> <Task>0</Task> <TimeCreated SystemTime="2026-04-14T08:30:00.000Z" /> <Computer>PC-WS01</Computer> </System> <EventData> <Data>MemoryDiagnostics-Results</Data> <Data>1</Data> <Binary>01000000</Binary> </EventData> </Event> The built-in Windows Memory Diagnostic tool performs a
#!/usr/bin/env php
[2026-03-07 19:15:34] Checking for writable cache directories...
[2026-03-07 19:15:34] ✓ Found writable directory: /code/sites/default/files/private/cache
[2026-03-07 19:15:34] Using cache directory: /code/sites/default/files/private/cache
[2026-03-07 19:15:34] ===========================================
[2026-03-07 19:15:34] MTI Productions Cache Generator
[2026-03-07 19:15:34] ===========================================
[2026-03-07 19:15:34] Starting cache generation at 2026-03-07 19:15:34
[2026-03-07 19:15:35] ✓ Connected to MTI Productions database
[2026-03-07 19:15:35] ✓ Connected to Drupal database
[2026-03-07 19:15:35] Generating node ID to Encore ID mapping...
[2026-03-07 19:15:35] ✓ Mapped 515 nodes for US
[2026-03-07 19:15:35] ✓ Mapped 421 nodes for UK
[2026-03-07 19:15:35] ✓ Mapped 462 nodes for AU
[2026-03-07 19:15:35] Writing node mapping cache (531 mappings) to: /code/sites/default/files/private/cache/mti_node_mapping_cache.json
[2026-03-07 19:15:35] ✓ Saved node mapping cache (531 mappings) successfully (12286 bytes)
[2026-03-07 19:15:35] Generating shows cache...
[2026-03-07 19:15:50] ✓ Cached 370 shows for US
[2026-03-07 19:16:05] ✓ Cached 317 shows for UK
[2026-03-07 19:16:24] ✓ Cached 340 shows for AU
[2026-03-07 19:16:24] Writing shows cache (1027 shows across 3 regions) to: /code/sites/default/files/private/cache/mti_shows_cache.json
[2026-03-07 19:16:24] ✓ Saved shows cache (1027 shows across 3 regions) successfully (166039 bytes)
[2026-03-07 19:16:24] Generating productions cache...
[2026-03-07 19:16:24] ✓ Retrieved 28979 active productions
[2026-03-07 19:16:24] ✓ Retrieved 28985 total productions (including past)
[2026-03-07 19:16:24] Writing productions cache (28979 active, 28985 total) to: /code/sites/default/files/private/cache/mti_productions_cache.json
[2026-03-07 19:16:27] ✓ Saved productions cache (28979 active, 28985 total) successfully (48586590 bytes)
[2026-03-07 19:16:27] Attempting to write metadata to: /code/sites/default/files/private/cache/mti_cache_metadata.json
[2026-03-07 19:16:27] ✓ Metadata saved successfully (2695 bytes)
[2026-03-07 19:16:27] ✓ Cache generation completed in 52.24 seconds
[2026-03-07 19:16:27] ===========================================
[2026-03-07 19:16:27] Cache Generation Summary:
[2026-03-07 19:16:27] - Node Mappings: 531
[2026-03-07 19:16:27] - Shows (US): 370
[2026-03-07 19:16:27] - Shows (UK): 317
[2026-03-07 19:16:27] - Shows (AU): 340
[2026-03-07 19:16:27] - Active Productions: 28979
[2026-03-07 19:16:27] - Total Productions: 28985
[2026-03-07 19:16:27] ===========================================
[2026-03-07 19:16:27] ✓ Cache generation completed successfully!