Celeb Glow
updates | February 28, 2026

Windows won't Restart, can't access Task Manager or launch certain Programs

I recently encountered the problem that Windows 10 hangs on restarting and shutdown. I have to turn off the machine my the power button. I also can't launch Windows task manager. I've tried a safe mode boot and startup repair but that hangs. I recently tried to run AVG PC tuneup's check disk but had to cancel it half way through. Whenever I try and access the hard disk through file explorer I get a message saying that Microsoft Windows is not responding. If I click end task it shows a black screen with a cursor and nothing else. This might be down to me writing a windows application in C++ as I specified the window destroy option return to be 1 instead of a safe exit with 0. So I'm worried that Windows has a memory leak or something. What can I do to get my computer working again?

6

2 Answers

It seems like the problem was some operating system settings that were modified by the AVG anti-virus.

My recommendations is not to use AVG. I have also had it once destroy half of my Startup menu, so I don't trust it any more.

Windows Defender has enormously improved and is now a quite good anti-virus, so you don't need a third-party product. And Windows Defender will never destroy the Windows setup.

2

Unless your Windows C++ application runs at startup (if it does, remove it), a clean (not hybrid) restart should eliminate that issue. If necessary, try the following:

  • Press WindowsR
  • Type cmd and press CtrlShiftEnter to get the CMD prompt as Administrator.
  • Enter the following two lines to shut down completely:

powercfg -h off

shutdown /s /t 0

However, has Windows 10 updated? A number of issues have been found with the April update, as well as recent others.

There are a number of solutions for the multiple issues, such as booting into Safe mode and removing the update (though MS will try to reinstall 'em), or uninstalling the non-MS anti-malware suite (unsafe).

7

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy