├── LICENSE.txt ├── NtTimer.h ├── README.md ├── Registry.cpp ├── Registry.h ├── Release └── SetTimerService.exe ├── ServiceControl.cpp ├── ServiceControl.h ├── SetTimerService.cpp ├── SetTimerService.rc ├── SetTimerService.sln ├── SetTimerService.vcproj ├── install_xp.cmd ├── ntdll.lib └── resource.h /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temerkhanov/SetTimerService/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /NtTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temerkhanov/SetTimerService/HEAD/NtTimer.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temerkhanov/SetTimerService/HEAD/README.md -------------------------------------------------------------------------------- /Registry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temerkhanov/SetTimerService/HEAD/Registry.cpp -------------------------------------------------------------------------------- /Registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temerkhanov/SetTimerService/HEAD/Registry.h -------------------------------------------------------------------------------- /Release/SetTimerService.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temerkhanov/SetTimerService/HEAD/Release/SetTimerService.exe -------------------------------------------------------------------------------- /ServiceControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temerkhanov/SetTimerService/HEAD/ServiceControl.cpp -------------------------------------------------------------------------------- /ServiceControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temerkhanov/SetTimerService/HEAD/ServiceControl.h -------------------------------------------------------------------------------- /SetTimerService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temerkhanov/SetTimerService/HEAD/SetTimerService.cpp -------------------------------------------------------------------------------- /SetTimerService.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temerkhanov/SetTimerService/HEAD/SetTimerService.rc -------------------------------------------------------------------------------- /SetTimerService.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temerkhanov/SetTimerService/HEAD/SetTimerService.sln -------------------------------------------------------------------------------- /SetTimerService.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temerkhanov/SetTimerService/HEAD/SetTimerService.vcproj -------------------------------------------------------------------------------- /install_xp.cmd: -------------------------------------------------------------------------------- 1 | sc config AudioSrv depend= "PlugPlay/RpcSs/SetTimer" -------------------------------------------------------------------------------- /ntdll.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temerkhanov/SetTimerService/HEAD/ntdll.lib -------------------------------------------------------------------------------- /resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temerkhanov/SetTimerService/HEAD/resource.h --------------------------------------------------------------------------------