DriverLoader icon indicating copy to clipboard operation
DriverLoader copied to clipboard

Small tool which loads Windows drivers with NtLoadDriver

Results 3 DriverLoader issues
Sort by recently updated
recently updated
newest added

Hello, Thanks for the great code! I updated the code to support driver unloading. Also it uses the fmt and winreg header-only libraries now to lessen the boiler plate part....

Hi , I got this error message: c0000033

how to unload this driver? `NtUnloadDriver()` can't ``` LSTATUS UnloadDriver(CONST LPSTR aService) { LSTATUS ret{ -1 }; HMODULE hNtdll{ 0 }; LPSTR aDriverKey{ 0 }; LSTATUS l{ 0 }; UNICODE_STRING...