I need to create a looping Blue Screen of Death on Windows 10 machines to demonstrate remote capabilities even with a crashed system. A crash we could bring up with a bat script file. I did researches and I found non suitable solutions.
Windows probably block all attempts to crash our system in live by user code. Indeed, user-mode code isn't supposed to be able to trigger a crash, just kernel code. So I know there exists tools like NotMyFault that allow to play with memory to bring up blue screen of crashes.
What I want to get is a looping blues screen, due to a windows not able to load. Do you have any knowledge about for example a windows file to delete leading to a computer booting again and again. Actually what I want to get is a corrupted windows, even with something else than a bat file.
Renaming winlogon.exe
to something.exe
works just fine. By the way you need to be an admin.
Ex.
cd c:\windows\system32
ren winlogon.exe something.exe
Hope this helps