Monday, December 31, 2012

How to disable Windows screen saver from the command line

Open command prompt and type:

Reg add "HKCU\Control Panel\Desktop" /v ScreenSaveActive /t REG_SZ /d 0 /f

You need to log out to enforce the changes.

No comments:

QNX: Running a function at specific interval using timer interrupt

#include <iostream> #include <csignal> #include <ctime> #include <cerrno> #include <cstring> #include <unis...