
Not every reboot is a userβs decision. Sometimes, the system whispers its own intentions β through updates, crashes, or power flickers. If your PC restarted without your command, hereβs how to uncover the ritual traces left behind.
π§ Step 1: Use Event Viewer to Decode the Reboot
- Press
Win + Rβ typeeventvwr.mscβ Enter - Navigate to: Windows Logs β System
- Look for these Event IDs:
41β Kernel-Power (unexpected shutdown or power loss)1074β shutdown initiated by a process (e.g., Windows Update)6008β previous shutdown was unexpected1001β bug check (BSOD)12, 13, 6005, 6006β startup/shutdown markers
π§ͺ PowerShell β Reboot Trace Ritual
PowerShell
Get-EventLog -LogName System -Newest 100 | Where-Object {$_.EventID -eq 41 -or $_.EventID -eq 1074 -or $_.EventID -eq 6008}
π§° Step 3: Reliability Monitor β The Visual Scroll
- Press
Win + Rβ typeperfmon /relβ Enter - Look for red Xs or warnings around the reboot time
- Click entries to see if it was a crash, update, or hardware issue
π Windows Update Rebooted My PC?
Yes β and it leaves behind clear evidence. In Event Viewer, look for:
- Event ID: 1074
- Source: USER32
π§ͺ PowerShell β Windows Update Reboot Check
PowerShell
Get-EventLog -LogName System -Newest 1000 | Where-Object {$_.EventID -eq 1074} | Format-Table TimeGenerated, Message -AutoSize
Look for messages like:
The process C:\Windows\servicing\TrustedInstaller.exe has initiated the restart…
The process C:\Windows\uus\packages\preview\AMD64\MoUsoCoreWorker.exe has initiated the restart…
The process C:\Windows\uus\packages\preview\AMD64\MoUsoCoreWorker.exe has initiated the restart…
These are system-initiated reboots, not user-triggered. They often occur after cumulative updates or servicing stack operations.
π§ Reboot Scroll Example
| π°οΈ Timestamp | π§ Process Initiated Reboot | π§ Reason |
|---|---|---|
| 10/11/2025 5:14:41 AM | TrustedInstaller.exe |
Post-update servicing |
| 10/11/2025 5:07:23 AM | MoUsoCoreWorker.exe |
Update orchestration |
| 10/10/2025 10:57:02 PM | TrustedInstaller.exe |
Cumulative update phase |
π§ Kapothi Scroll Tip
Artifact: Unexpected Reboot
Cause: Windows Update (TrustedInstaller, MoUsoCoreWorker)
Tools: Event Viewer, PowerShell, Reliability Monitor
Tags: Phantom Reboot, Update Ritual, Sonic Scroll Forensics
Notes: Stylize each timestamp as a heartbeat of the system β not user-triggered, but orchestrated by the OS
Cause: Windows Update (TrustedInstaller, MoUsoCoreWorker)
Tools: Event Viewer, PowerShell, Reliability Monitor
Tags: Phantom Reboot, Update Ritual, Sonic Scroll Forensics
Notes: Stylize each timestamp as a heartbeat of the system β not user-triggered, but orchestrated by the OS