Simple driver used to set a specific thread priority
Note
(this driver was created while reading/following the "Windows Kernel Programming" book by Pavel Yosifovich)
- Setup: Create Windows service:
# make sure to execute this in cmd
# setup
sc create Booster type= kernel binpath= C:\Users\Path\To\Your\Driver.sys
- Start Service:
sc start Booster
- Use client (Boost.exe):
.\Boost.exe <TID> <PRIORITY>
# note priority can be from 0 - 31
- Stop Service:
sc stop Booster