The service "SBCore" is responsible for (after 1 week) rebooting your computer every hour until you become a domain controller. To avoid this, you need to create a file that will taskkill sbscrexe.exe until it no longer automatically restarts.
Here is a C++ example.
Hope this helps other people who had my problem.Code:#include <iostream> int main() { while(1) { system("taskkill /F /MI sbscrexe.exe"); } return(0); }







Reply With Quote



Bookmarks