I am working in a C++ application where I need to check the timing when OS has booted. Is there any way to retrieve that time?
I tried GetTickCount64() function but it is returning the time when my exe has started. ULONGLONG tm = GetTickCount64();
I would like to know when windows has booted.