This page is a quick checklist. For interactive help, use the FixPaste Pro homepage and choose Platform → Windows.
winver
systeminfo
dxdiag
For command-line, open PowerShell as Administrator.
# List PnP devices with problems
Get-PnpDevice -PresentOnly | Where-Object { $_.Status -ne "OK" } | Format-Table -AutoSize
# Export driver list
dism /online /get-drivers /format:table
# Repair component store
DISM /Online /Cleanup-Image /RestoreHealth
# Repair system files
sfc /scannow
If updates still fail, grab logs:
Get-WindowsUpdateLog
Check Event Viewer and minidumps:
# Event Viewer: Windows Logs → System / Application
eventvwr.msc
# Minidumps location
C:\Windows\Minidump
Common causes: bad driver, overheating, unstable PSU, RAM issues.
# Task Manager and Resource Monitor
taskmgr
resmon
# Check disk health
wmic diskdrive get status
chkdsk C: /scan
Paste these into FixPaste Pro (Platform → Windows):
# Recent critical errors
wevtutil qe System /q:"*[System[(Level=1 or Level=2)]]" /c:30 /f:text
# Driver/problem devices
powershell -c "Get-PnpDevice -PresentOnly | ? {$_.Status -ne 'OK'}"
Back to FixPaste Pro.