tabu.blog
System Fix Guide

Check system health (read-only)

This diagnostic command inspects your system integrity and displays the last few event logs. It performs no modifications or repairs automatically.
@echo off
setlocal
echo === System Diagnostic Quick Check ===
echo.
echo Gathering integrity information...
echo.
sfc /verifyonly
echo.
echo Checking recent system logs (last 10 entries)...
wevtutil qe System /c:10 /rd:true /f:text
echo.
choice /m "Open official troubleshooting resources"
if errorlevel 2 goto done
start https://support.microsoft.com/troubleshooting
:done
echo Review the results above and follow recommended guidance.
echo - Docs: https://support.microsoft.com/troubleshoot
echo - Learn: https://learn.microsoft.com/troubleshoot/
endlocal
Official resources: Microsoft Support · Docs Troubleshoot
Step 01

Identify the issue

Observe what exactly happens and when. Note error codes, visible symptoms, and any recent configuration changes.

Step 02

Run diagnostic checks

Use built-in tools like System File Checker and Event Viewer to detect inconsistencies or recent warnings.

Step 03

Review & apply safe fixes

  • Start with non-destructive actions (like restarts or disk checks).
  • Re-run diagnostics after making changes.
  • Seek official guidance if issues continue.