Complete Computer Troubleshooting Cheatsheet: Diagnose & Fix Common Problems

Introduction to Computer Troubleshooting

Computer troubleshooting is the systematic process of identifying, diagnosing, and resolving hardware, software, and network issues. Effective troubleshooting combines technical knowledge with a methodical approach to isolate problems and implement appropriate solutions, saving time and preventing data loss.

Core Troubleshooting Methodology

The Universal Troubleshooting Process

  1. Identify symptoms: Document exactly what’s happening
  2. Isolate the problem: Determine if it’s hardware, software, or network-related
  3. Reproduce the issue: Can you make it happen consistently?
  4. Simplify the system: Remove variables by disconnecting peripherals or closing applications
  5. Try simple fixes first: Restart, update, check connections
  6. Research similar issues: Search for error codes or specific symptoms
  7. Test potential solutions: Apply one fix at a time
  8. Verify resolution: Confirm the problem is fixed and won’t recur
  9. Document the solution: Record what worked for future reference

Essential Diagnostic Tools

  • Built-in diagnostics: BIOS/UEFI tools, Windows Memory Diagnostic, SMART disk checks
  • System information tools: Device Manager, System Information, Task Manager
  • Third-party utilities: Hardware monitors, diagnostic software
  • Rescue media: Bootable USB drives with repair tools

Quick-Reference Troubleshooting Flowchart

START → Computer won't power on → Check power connections → Check power supply → Hardware issue
      ↓
Computer powers on but won't boot → Check boot device → Check for BIOS/UEFI errors → OS repair
      ↓
Computer boots but runs poorly → Check resource usage → Scan for malware → Check startup items → Software issue
      ↓
Specific application not working → Update application → Reinstall application → Check compatibility
      ↓
Internet connection issues → Check local connection → Check network devices → Contact ISP

Hardware Troubleshooting

Computer Won’t Power On

SymptomPossible CausesTroubleshooting Steps
No lights, no fansPower supply failure, Power connection issues1. Check power cord connections<br>2. Test with different outlet<br>3. Check power supply switch<br>4. Test with known working power supply
Lights on, no bootRAM issues, CPU problems, Motherboard failure1. Reseat RAM modules<br>2. Try booting with minimal hardware<br>3. Clear CMOS/reset BIOS<br>4. Check for beep codes or error LEDs
Powers on then offOverheating, Power supply issues, Short circuit1. Check CPU cooler and fans<br>2. Remove dust from components<br>3. Disconnect non-essential components<br>4. Test with different power supply

POST Beep Codes and LED Diagnostics

  • 1 beep: Normal boot
  • 2 beeps: CMOS/BIOS configuration issue
  • 3 beeps: Memory issue
  • Continuous beeps: Power supply or motherboard issue
  • LED error codes: Consult motherboard manual for specific patterns

Display Problems

  • No display output:

    1. Check monitor power and connections
    2. Try different video cable/port
    3. Test with different monitor
    4. Reseat graphics card (if applicable)
    5. Test integrated graphics (if available)
  • Distorted display:

    1. Update graphics drivers
    2. Check cable connections
    3. Reset monitor settings to default
    4. Test different resolution settings
    5. Check for overheating GPU

Storage Device Issues

  • Hard Drive/SSD not detected:

    1. Check data and power cables
    2. Test in different SATA port
    3. Check drive visibility in BIOS/UEFI
    4. Try drive in different computer
    5. Check for clicking sounds (HDD failure)
  • Drive detected but shows errors:

    1. Run CHKDSK (Windows) or First Aid (Mac)
    2. View SMART data for health status
    3. Test with disk diagnostic utilities
    4. Backup data immediately if possible
    5. Consider drive replacement if SMART fails

Peripheral Connectivity Issues

  • USB devices not working:

    1. Try different USB port
    2. Restart computer with device connected
    3. Uninstall and reinstall device drivers
    4. Check Device Manager for errors
    5. Test device on different computer
  • Bluetooth problems:

    1. Verify Bluetooth is enabled
    2. Restart Bluetooth service
    3. Remove device and re-pair
    4. Update Bluetooth drivers
    5. Check for device compatibility

Software Troubleshooting

Operating System Won’t Boot

Boot StageSymptomsTroubleshooting Steps
Pre-OS (BIOS/UEFI)Error messages, blank screen, hardware beeps1. Check boot device priority<br>2. Reset BIOS/UEFI settings<br>3. Check boot device health
OS LoadingSpinning circle, frozen screen, BSOD1. Boot to Safe Mode<br>2. Use System Restore<br>3. Startup Repair tool<br>4. SFC and DISM scans
Post-BootLogin issues, blank desktop, crashes after login1. Check user profile<br>2. Run SFC and DISM scans<br>3. Boot to Safe Mode<br>4. Check startup applications

Windows Recovery Options

  • Safe Mode: Windows key + R → msconfig → Boot → Safe boot
  • Startup Repair: Boot from Windows installation media → Repair options
  • System Restore: Start → type “recovery” → Open Recovery → System Restore
  • Reset PC: Settings → Update & Security → Recovery → Reset this PC

macOS Recovery Options

  • Safe Mode: Hold Shift during startup
  • Recovery Mode: Command + R during startup
  • Disk Utility: Boot to Recovery Mode → Disk Utility
  • Reinstall macOS: Boot to Recovery Mode → Reinstall macOS

System Performance Issues

  • Computer running slowly:

    1. Check Task Manager/Activity Monitor for resource usage
    2. Scan for malware/viruses
    3. Disable unnecessary startup programs
    4. Clear temporary files
    5. Defragment HDD (not for SSDs)
    6. Consider hardware upgrades (RAM, SSD)
  • Application freezes or crashes:

    1. Force quit unresponsive application
    2. Update application to latest version
    3. Check for OS compatibility
    4. Reinstall application
    5. Check error logs

Critical Windows Troubleshooting Commands

sfc /scannow                 # System File Checker - repairs Windows files
DISM /Online /Cleanup-Image /RestoreHealth  # Repairs Windows image
chkdsk C: /f /r              # Check disk for errors and bad sectors
powercfg -energy             # Power efficiency diagnostics
netsh winsock reset          # Reset Winsock catalog
ipconfig /flushdns           # Clear DNS cache

Critical macOS Troubleshooting Commands

diskutil verifyVolume /      # Verify disk structure
diskutil repairVolume /      # Repair disk issues
sudo periodic daily weekly monthly  # Run maintenance scripts
sudo nvram -c                # Clear NVRAM
sudo dscacheutil -flushcache # Flush DNS cache

Network Troubleshooting

Internet Connection Issues

SymptomTroubleshooting Steps
No connection1. Check physical connections<br>2. Restart modem and router<br>3. Verify network adapter settings<br>4. Check for service outages
Intermittent connection1. Check for interference sources<br>2. Update router firmware<br>3. Change WiFi channel<br>4. Test with wired connection
Slow connection1. Run speed test<br>2. Check for background downloads<br>3. Scan for malware<br>4. Reset network settings

Network Diagnostics Commands

Windows:

ipconfig /all                # View all network configuration
ping google.com              # Test connection to external server
tracert google.com           # Trace route to destination
netstat -a                   # View all active connections
nslookup google.com          # DNS lookup

macOS/Linux:

ifconfig                     # View network configuration
ping google.com              # Test connection
traceroute google.com        # Trace route to destination
netstat -a                   # View all active connections
dig google.com               # DNS lookup

Wi-Fi Troubleshooting

  • Cannot connect to Wi-Fi:

    1. Toggle Wi-Fi off and on
    2. Forget network and reconnect
    3. Reset network settings
    4. Update network adapter drivers
    5. Check for MAC address filtering
  • Weak Wi-Fi signal:

    1. Move closer to router
    2. Remove physical obstructions
    3. Change router channel
    4. Update router firmware
    5. Consider Wi-Fi extender

Common Error Messages and Solutions

Error MessagePossible CausesSolutions
“Blue Screen of Death”Driver conflicts, Hardware failure, Memory issues1. Note error code (e.g., MEMORY_MANAGEMENT)<br>2. Check for recent hardware/software changes<br>3. Update drivers<br>4. Run memory diagnostic<br>5. Check Event Viewer for details
“No bootable device”Incorrect boot order, Corrupted boot sector, Failing drive1. Check boot order in BIOS/UEFI<br>2. Run boot repair tools<br>3. Check drive health<br>4. Restore MBR/GPT
“DLL not found”Corrupted installation, Missing system files1. Reinstall application<br>2. Run SFC /scannow<br>3. Restore from backup<br>4. Download missing DLL (from trusted source)
“Disk full”Low storage space1. Run Disk Cleanup<br>2. Uninstall unused applications<br>3. Move files to external storage<br>4. Use storage analyzer to find large files

Security Troubleshooting

Malware Symptoms and Removal

  • Common malware symptoms:

    • Unexpected pop-ups and redirects
    • System slowing significantly
    • Unusual network activity
    • Files encrypted or missing
    • Disabled security software
  • Malware removal steps:

    1. Boot into Safe Mode
    2. Update and run antivirus/anti-malware scans
    3. Use multiple scanning tools
    4. Remove suspicious programs
    5. Reset browsers
    6. Change sensitive passwords after cleanup

Account and Password Issues

  • Cannot login to user account:
    1. Verify Caps Lock is off
    2. Try password reset options
    3. Use alternative admin account
    4. Check for account lockout policies
    5. Use system recovery options

Preventative Maintenance

Regular Maintenance Schedule

TimeframeHardware TasksSoftware Tasks
WeeklyCheck for unusual noises, Test UPS if availableUpdate software, Backup important data
MonthlyClean external dust, Check connectionsRun disk cleanup, Check for large unnecessary files
QuarterlyClean internal components, Check fansDefragment HDD (not SSD), Deep virus scan
YearlyReapply thermal paste (if needed), Test backup restorationOS optimization, Driver updates review

Backup Best Practices

  • 3-2-1 Backup Rule:

    • 3 copies of data
    • 2 different storage types
    • 1 copy off-site or cloud-based
  • Critical items to backup:

    • Documents and work files
    • Email archives
    • Photos and videos
    • Browser bookmarks
    • Application settings

Advanced Troubleshooting Techniques

Boot Repair and Recovery

  • Repair Windows boot records:

    bootrec /fixmbr
    bootrec /fixboot
    bootrec /rebuildbcd
    
  • Repair GRUB (Linux):

    sudo grub-install /dev/sdX
    sudo update-grub
    

Data Recovery Options

  • Software-based recovery:

    1. Try built-in tools (Previous Versions, Time Machine)
    2. Use data recovery software (Recuva, TestDisk)
    3. Don’t install recovery software on the problem drive
  • Professional recovery options:

    1. For critical data or physical drive damage
    2. Cleanroom recovery services
    3. Can be expensive but higher success rate

Resources for Further Help

Reliable Troubleshooting Websites

  • Microsoft Support: support.microsoft.com
  • Apple Support: support.apple.com
  • Stack Exchange: superuser.com
  • Bleeping Computer: bleepingcomputer.com
  • Tom’s Hardware: tomshardware.com

Diagnostic Tools

  • CrystalDiskInfo (drive health)
  • MemTest86 (RAM testing)
  • HWiNFO (system information)
  • Wireshark (network analysis)
  • Process Explorer (advanced Task Manager)

When to Seek Professional Help

  • Physical damage to components
  • Electrical issues or burning smells
  • Drive making clicking/grinding noises
  • Critical data recovery needs
  • Persistent issues after exhausting DIY options

This cheatsheet provides a structured approach to identifying and resolving common computer problems. Remember that patient, methodical troubleshooting is often more effective than random fixes, and always backup important data before making major system changes.

Scroll to Top