Using HalDisplayString For Custom Blue Screen Of Death
I was reading a while ago somewhere online that you could make a custom BSOD. I don't remember where but I know it had something to with calling HalDisplayString which would switch to the bluescreen and print a message. I tried calling HalDisplayString from a simple driver but nothing happens. I was wondering if anyone could point me in the right direction. Here is the code to the driver. #include "ntddk.h" #include "wdm.h" NTSYSAPI VOID NTAPI HalDisplayString( PCHAR String ); NTSYSAPI VOID NTAPI NtDisplayString( PCHAR String ); DRIVER_INITIALIZE DriverEntry; NTSTATUS DriverEntry( __in struct