πŸ’» 2026 PC & System Troubleshooting Portal

PC & System Troubleshooting Master Guide

Solve Windows PC crashes, BSOD blue screens, slow startups, RAM faults, and network disconnects: Step-by-step diagnostic checklists and command-line repair tools for IT support, QA testers, and developers.

πŸ’»
Windows & BSOD
Stop Code Diagnostics
πŸ› οΈ
SFC & DISM Repair
Command-Line OS Recovery
🌐
Network & Wi-Fi
IPConfig & Winsock Reset
⚑
RAM & Hardware
MemTest86 & Thermal Care
πŸ’» Systematic Diagnosis Framework

5-Step System & PC Troubleshooting Pathway

Hardware bottlenecks and OS corruptions can disrupt developer & QA workflows. Master systematic isolation, command-line system repair, and hardware diagnostics.

1

Step 1: Symptom Triage

Categorize issue: BSOD blue screen, system freeze, automatic restart loop, or slow bootup delay.

View Windows Guides →
2

Step 2: RAM & Disk Diagnostics

Run Windows Memory Diagnostic, MemTest86, and CHKDSK disk bad-sector scans.

View Hardware Guides →
3

Step 3: SFC & DISM OS Repair

Execute elevated Cmd line scans: sfc /scannow and DISM /Online /Cleanup-Image /RestoreHealth.

View Repair Cmds →
4

Step 4: Network Stack Reset

Resolve Wi-Fi drops and DNS resolution issues using ipconfig /flushdns and netsh winsock reset.

View Network Fixes →
5

Step 5: Thermal & Driver Tuning

Clean CPU fan dust, re-apply thermal paste, and update GPU display drivers to stop thermal throttling.

View Thermal Care →
πŸ’» Interactive Tool 1 of 5

Windows BSOD Error Code & Stop Code Resolver

Select Windows Blue Screen Stop Codes to view root cause and exact command-line repair steps.

⏱️ Interactive Tool 2 of 5

PC Boot Time & Startup App Optimizer Evaluator

Calculate estimated boot time savings by disabling heavy startup apps in Task Manager.

⚑ Interactive Tool 3 of 5

Network Latency & Wi-Fi Ping Diagnostics Generator

Generate exact PowerShell & Cmd troubleshooting lines for Wi-Fi drops and DNS failures.


            
πŸ“„ Interactive Tool 4 of 5

1-Click IT Desktop Troubleshooting Master Checklist Exporter

Select your IT repair topics to export a formatted diagnostic checklist.


            
⚑ Feature 5 of 10

Interactive System Symptom Diagnostic Decision Tree

Select your computer symptom to dynamically locate the exact step-by-step repair guide.

πŸ§ͺ Feature 6 of 10

IT Hardware & OS Health Self-Assessment Quiz

Assess your computer's storage, thermals, and RAM to calculate your overall PC Health Score (%).

PC Hardware Health Score

System Running at Peak Performance

92%
πŸ› οΈ Feature 7 of 10

System RAM & Pagefile Virtual Memory Calculator

Calculate recommended Windows Initial & Maximum Paging File sizes (MB) based on installed RAM.

πŸ“Š Feature 8 of 10

Interactive Windows CMD & PowerShell Repair Suite

Copy tested command-line repair snippets for OS, network, disk, and power management.


            
🏒 Feature 9 of 10

PC Troubleshooting Matrix by Operating System Platform

Compare repair workflows across Windows 10/11 vs macOS vs Linux Ubuntu.

🎯 Feature 10 of 10

IT Hardware & OS Troubleshooting Rapid Flip Flashcards

Click the flashcard to flip and reveal key IT repair answers.

Module 1: Windows OS Repair & BSOD Blue Screens (Q1 - Q9)

Click to Expand/Collapse
1. How do you fix Windows BSOD 'CRITICAL_PROCESS_DIED' using SFC and DISM?
SOLUTION:

πŸ“Œ Problem Description & Symptoms: Windows crashes suddenly showing a blue screen (BSOD) with stop code CRITICAL_PROCESS_DIED, automatically restarting or freezing at 0% error dump collection.

πŸ” Common Root Causes:

  • Corrupted critical Windows system kernel files (e.g. csrss.exe, svchost.exe, or wininit.exe).
  • Faulty or incompatible hardware device driver update.
  • Bad disk sectors or sudden power loss causing registry hive corruption.

πŸ› οΈ Step-by-Step Troubleshooting Instructions:

  1. Step 1 (Open Elevated Admin Cmd): Press Win + S, type cmd, right-click Command Prompt and select Run as Administrator.
  2. Step 2 (Run System File Checker): Type the following command and press Enter:
    sfc /scannow
    Wait for verification to reach 100%. If corrupt files are found and repaired, proceed to Step 3.
  3. Step 3 (Run DISM Image Cleanup): Execute the Deployment Image Servicing and Management tool to repair the underlying Windows component store:
    DISM /Online /Cleanup-Image /RestoreHealth
  4. Step 4 (Reboot System): Restart Windows to apply repairs. If Windows fails to boot, enter Windows Recovery Environment (WinRE) by holding Shift while clicking Restart, open Troubleshoot → Advanced Options → Command Prompt, and run the commands above.

Hinglish: BSOD 'CRITICAL_PROCESS_DIED' tab aata hai jab Windows ka core system process corrupt ho jata hai. Admin Cmd me pehle sfc /scannow aur phir DISM /RestoreHealth chala kar corrupt files repair karein.
πŸ’‘ IT Admin Pro Tip: If DISM returns error 0x800f081f (Source files not found), mount a matching Windows 11 ISO and point DISM to the install.wim file using /Source:WIM:D:\Sources\install.wim:1.
πŸ›‘οΈ Prevention & Maintenance Tips: Keep System Restore points active, avoid hard power cutoffs during Windows updates, and run monthly SFC health checks.
2. How do you fix Windows BSOD 'MEMORY_MANAGEMENT' stop code errors?
SOLUTION:

πŸ“Œ Problem Description & Symptoms: System displays BSOD MEMORY_MANAGEMENT during heavy multitasking, software installation, or memory-intensive tasks.

πŸ” Common Root Causes: Defective physical RAM stick, corrupt pagefile, or unstable XMP RAM overclocking profile in BIOS.

πŸ› οΈ Step-by-Step Troubleshooting Instructions:

  1. Press Win + R, type mdsched.exe, and press Enter to launch Windows Memory Diagnostic.
  2. Select Restart now and check for problems (recommended).
  3. After reboot, Windows will test physical RAM. If hardware errors are detected, unseat RAM sticks and test them individually.
  4. Reset BIOS settings to Default (disable XMP/DOCP RAM overclocking).

πŸ›‘οΈ Prevention Tip: Ensure RAM sticks match identical voltage, clock speed (MHz), and CAS latency specifications across dual channels.
3. How do you repair corrupted Windows Update files when downloads stall at 99%?
SOLUTION:

πŸ“Œ Problem Description & Symptoms: Windows Update download gets stuck at 99%, fails with error 0x80070002 or 0x80240034.

πŸ” Common Root Causes: Corrupted update cache inside SoftwareDistribution or Catroot2 system folders.

πŸ› οΈ Step-by-Step Troubleshooting Instructions:

  1. Open Cmd as Administrator.
  2. Stop update background services:
    net stop wuauserv
    net stop bits
    net stop cryptsvc
  3. Rename cache folders to clear old corrupted download files:
    ren C:\Windows\SoftwareDistribution SoftwareDistribution.old
    ren C:\Windows\System32\catroot2 catroot2.old
  4. Restart update services:
    net start wuauserv
    net start bits
    net start cryptsvc
  5. Re-open Windows Settings → Windows Update → Check for updates.

πŸ›‘οΈ Prevention Tip: Maintain at least 20GB free space on your C: drive before starting major Windows feature updates.
4. How do you fix Windows BSOD 'INACCESSIBLE_BOOT_DEVICE' after BIOS update?
SOLUTION:

πŸ“Œ Problem Description & Symptoms: Computer fails to boot after BIOS update or CMOS reset, displaying blue screen INACCESSIBLE_BOOT_DEVICE.

πŸ” Common Root Causes: BIOS reset SATA controller mode from AHCI/NVMe to RAID or IDE mode.

πŸ› οΈ Step-by-Step Troubleshooting Instructions:

  1. Restart PC and tap Del or F2 repeatedly to enter BIOS/UEFI Setup.
  2. Navigate to Storage / SATA Configuration.
  3. Change SATA Controller Mode from RAID / IDE to AHCI.
  4. Save settings (press F10) and reboot.

πŸ›‘οΈ Prevention Tip: Take a photo of your BIOS storage configuration settings before performing firmware updates.
5. How do you fix Windows Explorer crashing repeatedly in a loop?
SOLUTION:

πŸ“Œ Problem Description & Symptoms: Windows taskbar and desktop icons continuously disappear and refresh every few seconds.

πŸ” Common Root Causes: Corrupted File Explorer shell extension or broken thumbnail cache file.

πŸ› οΈ Step-by-Step Troubleshooting Instructions:

  1. Press Ctrl + Shift + Esc to open Task Manager.
  2. Find Windows Explorer, right-click and select End Task.
  3. Click Run new task, type explorer.exe, check 'Create this task with administrative privileges' and click OK.
  4. Clear Explorer history: Open Control Panel → File Explorer Options → click Clear under Privacy.

πŸ›‘οΈ Prevention Tip: Disable third-party context menu shell extensions using ShellExView utility.
6. How do you repair corrupted Boot Configuration Data (BCD) using Bootrec?
SOLUTION:

πŸ“Œ Problem Description & Symptoms: Windows error screen stating "The Boot Configuration Data for your PC is missing or contains errors" (Error code 0xc000000f).

πŸ” Common Root Causes: Damaged Master Boot Record (MBR) or corrupted BCD store on EFI system partition.

πŸ› οΈ Step-by-Step Troubleshooting Instructions:

  1. Boot from Windows Installation USB media. Click Repair your computer → Troubleshoot → Command Prompt.
  2. Run boot repair commands:
    bootrec /fixmbr
    bootrec /fixboot
    bootrec /rebuildbcd
  3. Restart PC and remove USB media.

πŸ›‘οΈ Prevention Tip: Avoid abrupt power off during Windows startup boot phase.
7. How do you resolve Windows 11 Black Screen with Cursor on startup?
SOLUTION:

πŸ“Œ Problem Description & Symptoms: PC turns on and shows a moveable mouse cursor against a completely black screen.

πŸ” Common Root Causes: Graphics driver subsystem freeze or stalled shell process initialization.

πŸ› οΈ Step-by-Step Troubleshooting Instructions:

  1. Press shortcut Ctrl + Shift + Win + B. Screen will flicker black once and beep to restart display drivers.
  2. If black screen remains, press Ctrl + Shift + Esc to open Task Manager.
  3. Click Run new task, type explorer.exe, and press Enter.

πŸ›‘οΈ Prevention Tip: Update GPU display drivers using DDU clean install method.
8. How do you fix Windows Automatic Repair Loop on boot?
SOLUTION:

πŸ“Œ Problem Description & Symptoms: Windows boots into "Preparing Automatic Repair" screen repeatedly in an endless loop.

πŸ” Common Root Causes: Corrupted registry hive or damaged boot critical drivers.

πŸ› οΈ Step-by-Step Troubleshooting Instructions:

  1. In WinRE screen, select Advanced Options → Command Prompt.
  2. Disable automatic startup repair loop enforcement:
    bcdedit /set {default} recoveryenabled No
  3. Run disk repair: chkdsk C: /f /r and reboot PC.

πŸ›‘οΈ Prevention Tip: Run regular disk defragmentation (for HDDs) or TRIM (for SSDs).
9. How do you analyze Windows Crash Dumps (.dmp) using BlueScreenView?
SOLUTION:

πŸ“Œ Problem Description & Symptoms: PC crashes intermittently without clear error messages, producing minidump files in C:\Windows\Minidump.

πŸ” Common Root Causes: Unidentified third-party kernel driver or hardware fault.

πŸ› οΈ Step-by-Step Troubleshooting Instructions:

  1. Download free utility BlueScreenView by NirSoft.
  2. Run application. It automatically reads dump files from C:\Windows\Minidump.
  3. Look at top list for crash date and highlighted red driver file (e.g. nvlddmkm.sys for NVIDIA GPU or Netwtw10.sys for Intel Wi-Fi).
  4. Update or rollback the specific offending driver in Device Manager.

πŸ›‘οΈ Prevention Tip: Configure Windows to save Small Memory Dumps (64KB) in System Properties → Advanced → Startup and Recovery.

Module 2: RAM Memory & Disk Hardware Diagnostics (Q10 - Q18)

Click to Expand/Collapse
10. How do you diagnose faulty RAM sticks using MemTest86?
SOLUTION:

πŸ“Œ Problem Description & Symptoms: PC experiences random freezes, application crashes, and BSOD errors without software triggers.

πŸ” Common Root Causes: Defective physical RAM memory transistor cells.

πŸ› οΈ Step-by-Step Troubleshooting Instructions:

  1. Download MemTest86 Free Edition and flash onto a USB flash drive.
  2. Plug USB drive into target PC, power on and tap F12 or F11 to open Boot Menu.
  3. Select USB drive and run 4 test passes.
  4. If any red memory address error is logged, unseat RAM sticks and re-test individually to isolate bad stick.

πŸ›‘οΈ Prevention Tip: Clean RAM gold contact pins gently with an eraser before re-installing into DIMM slots.
11. How do you repair HDD/SSD Bad Sectors using CHKDSK?
SOLUTION:

πŸ“Œ Problem Description & Symptoms: Files fail to open, drive access is extremely slow, or Windows prompts "Drive contains errors".

πŸ” Common Root Causes: Logical file allocation corruption or physical disk platter wear.

πŸ› οΈ Step-by-Step Troubleshooting Instructions:

  1. Open Command Prompt as Administrator.
  2. Execute repair scan:
    chkdsk C: /f /r /x
  3. Type Y when prompted to schedule scan on next reboot.
  4. Restart PC and allow CHKDSK scan to complete stages 1 through 5.

πŸ›‘οΈ Prevention Tip: Always safely eject external drives before unplugging USB cables.
12. How do you check SSD Health & SMART attributes using CrystalDiskInfo?
SOLUTION:

πŸ“Œ Problem Description & Symptoms: System performance slows down, files take long to copy, or SSD health degrades.

πŸ” Common Root Causes: NAND flash cell write wear-level exhaustion or overheating SSD controller.

πŸ› οΈ Step-by-Step Troubleshooting Instructions:

  1. Download and run CrystalDiskInfo.
  2. Review overall Health Status (Good, Caution, Bad).
  3. Check key SMART attributes: Reallocated Sectors Count and Percentage Health Remaining.
  4. If Health Status is 'Caution' or below 20%, back up important data immediately to external storage.

πŸ›‘οΈ Prevention Tip: Install dedicated M.2 aluminum heatsink over high-speed NVMe SSDs to prevent thermal throttling.
13. How do you resolve PC Beep Codes on startup (e.g. 3 Beeps)?
SOLUTION:

πŸ“Œ Problem Description & Symptoms: PC monitor stays black on power on, motherboard emits loud beep sounds (e.g. 3 short beeps).

πŸ” Common Root Causes: Base 64K RAM memory initialization failure or unseated GPU card.

πŸ› οΈ Step-by-Step Troubleshooting Instructions:

  1. Power off PC and unplug wall power cord.
  2. Open PC side panel, unlatch RAM DIMM clips, remove RAM sticks.
  3. Clean RAM contact pins and re-seat firmly into primary DIMM slots (A2 and B2).
  4. Plug power cord back in and test startup.

πŸ›‘οΈ Prevention Tip: Ensure PC case is grounded properly before touching motherboard components.
14. What causes PC Random Freezes under heavy multitasking load?
SOLUTION:

πŸ“Œ Problem Description & Symptoms: Mouse cursor freezes completely under heavy browser tab usage or IDE compilation.

πŸ” Common Root Causes: Insufficient physical RAM causing pagefile swapping, or PSU 12V rail drop.

πŸ› οΈ Step-by-Step Troubleshooting Instructions:

  1. Open Task Manager (Ctrl + Shift + Esc) → Performance tab.
  2. Check Memory usage. If memory usage exceeds 90%, expand Virtual Memory pagefile.
  3. Upgrade physical RAM from 8GB to 16GB/32GB.

πŸ›‘οΈ Prevention Tip: Close unused background electronic apps (Discord, Teams, Chrome extensions).
15. How do you configure Virtual Memory Paging File size in Windows?
SOLUTION:

πŸ“Œ Problem Description & Symptoms: System displays "Your computer is low on memory" popups.

πŸ” Common Root Causes: Windows managed pagefile size is constrained on small C: drive partition.

πŸ› οΈ Step-by-Step Troubleshooting Instructions:

  1. Press Win + R, type sysdm.cpl and press Enter.
  2. Select Advanced tab → Performance SettingsAdvanced tab → click Change under Virtual Memory.
  3. Uncheck 'Automatically manage paging file size'.
  4. Select Custom size: Set Initial Size to 1.5x Installed RAM (e.g. 24576 MB for 16GB RAM) and Maximum Size to 3x Installed RAM (49152 MB). Click Set → OK → Restart PC.

πŸ›‘οΈ Prevention Tip: Always place custom paging file on your fastest SSD drive.
16. How do you fix external USB Hard Disk not showing up in File Explorer?
SOLUTION:

πŸ“Œ Problem Description & Symptoms: USB external drive chimes when plugged in, but does not appear in File Explorer.

πŸ” Common Root Causes: Unassigned drive letter or uninitialized RAW partition format.

πŸ› οΈ Step-by-Step Troubleshooting Instructions:

  1. Press Win + X and select Disk Management (diskmgmt.msc).
  2. Locate external disk in bottom list.
  3. If drive letter is missing, right-click partition → Change Drive Letter and Paths → Add → assign drive letter (e.g. E:).
  4. If disk shows 'Unallocated', right-click → New Simple Volume.

πŸ›‘οΈ Prevention Tip: Connect high-power external drives directly to rear USB 3.0 ports on PC motherboard.
17. How do you resolve CMOS Battery Failure ('Date/Time Not Set' BIOS error)?
SOLUTION:

πŸ“Œ Problem Description & Symptoms: System clock resets to 1999 or 2009 every time PC is powered off.

πŸ” Common Root Causes: Depleted CR2032 3V lithium coin battery on motherboard.

πŸ› οΈ Step-by-Step Troubleshooting Instructions:

  1. Power off PC and unplug wall power.
  2. Locate shiny silver CR2032 coin battery on motherboard.
  3. Press latch to release old battery, insert fresh CR2032 3V battery.
  4. Power on, enter BIOS, set correct date/time, press F10 to save.

πŸ›‘οΈ Prevention Tip: Replace CMOS batteries every 4-5 years proactively.
18. How do you test Power Supply Unit (PSU) stability using paperclip test?
SOLUTION:

πŸ“Œ Problem Description & Symptoms: PC shows no sign of life (no LEDs, no fan spin) when power button is pressed.

πŸ” Common Root Causes: Dead PSU power supply or blown internal fuse.

πŸ› οΈ Step-by-Step Troubleshooting Instructions:

  1. Unplug PSU wall power. Disconnect 24-pin main motherboard power connector.
  2. Insert paperclip ends into GREEN pin (PS_ON) and any adjacent BLACK pin (Ground).
  3. Plug power cord into wall and turn PSU rocker switch to ON.
  4. If PSU fan spins, PSU power circuit is functional (motherboard power switch may be broken).

πŸ›‘οΈ Prevention Tip: Always use 80+ Gold certified branded power supplies.

Module 3: Network, Wi-Fi & Internet Connectivity (Q19 - Q27)

Click to Expand/Collapse
19. How do you fix "Wi-Fi Connected, No Internet" DNS errors?
SOLUTION:

πŸ“Œ Problem Description & Symptoms: Wi-Fi icon shows connected status with warning message "No Internet, Secured".

πŸ” Common Root Causes: Stale DNS cache, ISP DNS outage, or corrupt Winsock catalog.

πŸ› οΈ Step-by-Step Troubleshooting Instructions:

  1. Open Cmd as Administrator.
  2. Execute network flush commands:
    ipconfig /flushdns
    ipconfig /release
    ipconfig /renew
    netsh winsock reset
  3. Reboot PC.
  4. Set custom public DNS: Open ncpa.cpl → right-click Wi-Fi → Properties → IPv4 → set Preferred DNS to 8.8.8.8 and Alternate DNS to 1.1.1.1.

πŸ›‘οΈ Prevention Tip: Use reliable DNS resolvers like Google (8.8.8.8) or Cloudflare (1.1.1.1).