With this tiny tool, you can know how much time has the computer been powered on…

UpTime is licensed under the GNU GPL v3 (attached)…
As usual, here are the links…
For the ones who want to easily read the relevant code:
DWORD dwMilliseconds = GetTickCount();
int nSeconds = (dwMilliseconds/1000)%60;
int nMinutes = (dwMilliseconds/1000/60)%60;
int nHours = (dwMilliseconds/1000/60/60)%24;
int nDays = dwMilliseconds/1000/60/60/24;
char pszStr[256];
sprintf_s(pszStr, 256, "%d days, %d hours, %d minutes and %d seconds", nDays, nHours, nMinutes, nSeconds);
MessageBox(NULL, pszStr, "UpTime 1.0 by NeoEGM <http://www.neoegm.com/software/uptime/>", MB_ICONINFORMATION);
Incoming search terms for the article:
Recent Comments