Windows Troubleshooting FAQ
Unexpected restarts can be caused by hardware issues, driver conflicts, or Windows updates. Try the following steps:
- Check the Event Viewer for critical errors (
Win+X → Event Viewer). - Update device drivers, especially graphics and chipset drivers.
- Run the built‑in
sfc /scannowandDISM /Online /Cleanup‑Image /RestoreHealthcommands. - Disable automatic restarts on system failure (System Properties → Advanced → Startup and Recovery).
If the issue persists, consider testing hardware components such as RAM (using Windows Memory Diagnostic) and the power supply.
System Restore points are stored in the System Volume Information folder and cannot be directly recovered if deleted. However, you can:
- Use
vssadmin list shadowsto view available shadow copies. - Run
System Restoreto select an earlier point. - Consider third‑party recovery tools that can scan the Volume Shadow Copy Service (VSS) database.
Follow these steps to fix a stalled Windows Update:
- Stop the Windows Update service:
net stop wuauserv
- Delete the contents of
C:\Windows\SoftwareDistribution\Download. - Restart the service:
net start wuauserv
- Run the built‑in troubleshooter (Settings → Update & Security → Troubleshoot → Windows Update).
If the problem continues, consider resetting the update components using DISM /Online /Cleanup‑Image /RestoreHealth and then checking for updates again.
0x0000007B indicates an INACCESSIBLE_BOOT_DEVICE error. Common causes include:
- Corrupt or missing storage drivers (especially after a BIOS/UEFI change).
- Faulty SATA controller mode (AHCI vs. IDE).
- Disk failures.
Resolution steps:
- Enter BIOS/UEFI and verify the SATA mode matches the driver installed in Windows.
- Boot into Safe Mode and uninstall recent storage driver updates.
- Run
chkdsk /f /ron the system drive. - If hardware is failing, replace the drive.
You can toggle high‑contrast mode using PowerShell:
Start-Process "ms-settings:easeofaccess-highcontrast"
Or via the registry (requires a reboot):
Set-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Themes\Personalize" -Name "AppsUseLightTheme" -Value 0 Set-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Themes\Personalize" -Name "SystemUsesLightTheme" -Value 0
Make sure to restore the original values after testing.