System instability

Khaled alenezi 45 Reputation points
2026-09-05T21:38:43.39+00:00

Hi, I’m having serious stability and Windows system issues on my laptop. The problems started after I ran a Windows optimization tool, and since then Windows has become unstable. I was previously unable to log in properly, and the Windows Hello PIN disappeared. I eventually managed to get back into Windows using System Restore, but several Windows components still aren’t working correctly.

I’m trying to repair my existing Windows installation rather than reset it. Here’s what I’ve found so far:

The Windows Update service (wuauserv) is present, but it will not start and gives Error 1083.

I ran sfc /scannow, which reported that it found corrupted files and successfully repaired them.

I ran SFC again afterward, and it reported “Windows Resource Protection did not find any integrity violations.”

I ran DISM /Image:C:\ /Cleanup-Image /ScanHealth, which reported that the component store is repairable.

I then ran DISM /Image:C:\ /Cleanup-Image /RestoreHealth, but it failed with Error 0x800f0915, saying the repair content could not be found.

Some built-in Windows functionality is still broken. For example, Windows Terminal does not open from the Windows right-click menu.

Windows Explorer/the desktop sometimes goes black for a second, then comes back with a noticeable delay.

Task Manager sometimes crashes unexpectedly.

I also experienced login and Windows Hello PIN problems before using System Restore.

The system is generally unstable, with multiple Windows components and built-in applications behaving incorrectly.

I would like help repairing Windows comprehensively without unnecessarily resetting the PC, especially the Windows Update service, component store, and broken built-in Windows components. I would also like to determine whether there is underlying Windows corruption that still needs to 180538

be repaired.

Windows for home | Windows 11 | Performance and system failures
0 comments No comments

Answer accepted by question author
Ivan B 122.5K Reputation points Independent Advisor
2026-09-05T22:17:04.9533333+00:00

Hi,

If none of the Q&A Assist procedures worked, use the Windows Refresh feature to fix the OS and Windows Update.

Go to Start Menu > Settings > System > Recovery > Fix problems using Windows Update > Reinstall now.

Let me know if it worked or not.

Thanks.

Was this answer helpful?

1 person found this answer helpful.

1 additional answer

Sort by: Most helpful
  1. AI answer

    2026-09-05T21:39:12.1733333+00:00

    The current state points to Windows corruption that was only partially repaired. Since sfc /scannow repaired files and then returned clean, but DISM /RestoreHealth still cannot find repair content and built-in components remain unstable, the next practical path is to repair Windows in stages rather than reset it immediately.

    1. Run the standard online repair sequence again from an elevated Command Prompt.
      • DISM.exe /Online /Cleanup-image /Restorehealth
      • Wait for a success message such as “The restore operation completed successfully” or “The operation completed successfully”.
      • Then run: sfc /scannow
      • Do not close the Command Prompt window until verification reaches 100%.
    2. If DISM still cannot complete because repair content cannot be found, use a repair source with DISM.
      • The supported syntax is: DISM.exe /Online /Cleanup-Image /RestoreHealth /Source:C:\RepairSource\Windows /LimitAccess
      • Replace C:\RepairSource\Windows with the actual location of the repair source.
      • This is the documented method when Windows Update cannot provide the files DISM needs.
    3. Because Windows Update is also broken, run the Windows Update Troubleshooter.
      • The troubleshooter can automatically analyze and fix Windows Update problems, including a corrupted download, and can also report a pending reboot blocking updates.
    4. Reset the Windows Update components manually if the service remains broken.
      • Warning: these are advanced command-line steps and require administrator permissions.
      • Run these commands one at a time in an elevated Command Prompt:
        • net stop bits
        • net stop wuauserv
        • ren %systemroot%\softwaredistribution softwaredistribution.bak
        • ren %systemroot%\system32\catroot2 catroot2.bak
        • net start bits
        • net start wuauserv
      • Restart the PC after the commands complete.
    5. Check the disk for file system errors.
      • Warning: disk repair requires a restart and should not be interrupted.
      • Run: chkdsk /f C:
      • If prompted to schedule the check at next restart, type Y, then restart.
      • This is relevant because component store and service failures can persist if the file system itself has errors.
    6. If instability continues, perform a clean restart of Windows.
      • A clean restart starts Windows with a minimal set of drivers and startup programs and helps rule out software conflicts caused by optimization tools or third-party utilities.
    7. If Windows components are still broken after DISM, SFC, Windows Update repair, and disk repair, use an in-place repair install.
      • This is the best fit when Windows remains unstable but a full reset is not desired.
      • The accepted guidance in similar cases is to perform an in-place repair using the Windows ISO and choose the option to keep files and apps.
      • This refreshes Windows system components without removing personal files and installed applications.
    8. If repair options are exhausted, use Recovery options only after backing up important files.
      • Some recovery options can result in data loss.
      • Start with the least disruptive option first.

    Given the symptoms described—broken built-in apps, Explorer black-screen behavior, Task Manager crashes, Windows Hello issues, and a damaged component store—the most complete non-reset path is:

    • repair disk with chkdsk /f C:
    • repair Windows image with DISM, using a repair source if needed
    • run sfc /scannow again
    • reset Windows Update components
    • if instability remains, perform an in-place repair install keeping files and apps

    References:

    AI-generated content may be incorrect. Read our transparency notes for more information.

    Was this answer helpful?

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.