Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles
(untagged)

Get the UpTime on a Windows System

0.00/5 (No votes)
12 Apr 2005 1  
Get the uptime on a Windows system.

Sample Image - stayon.png

Introduction

Some may have heard about a Unix command that would display the time the server has been running. Windows won't give you such a command but you can easily put together an application that does just that. Sometimes you might be in situation when your application relies on some resources like services or other apps that are slow to start and can't be synchronized against easily. The uptime might be the last resort in implementing a delay under such conditions, to allow your application to wait until all resources are properly initialized.

Background

Windows allows a wide range of queries to be performed on the machine and processes. This functionality is found in pdh.dll, and we are going to use it to retrieve the UpTime.

Using the code

We will add a counter, will collect the data, format it and close the query.

The code is self-explanatory:

    PDH_STATUS  status;
    HQUERY        perfQuery = NULL;
    HCOUNTER    uptimeCounter;
    char        uptimeCounterPath[] = "\\\\.\\System\\System Up Time";
    PDH_FMT_COUNTERVALUE uptimeValue;
    //.......................

    seconds = 0;
    //

    // Create a PDH query

    //

    if( PdhOpenQuery(NULL, 0, perfQuery ) != ERROR_SUCCESS )
        return FALSE;

    //

    // Associate the uptime counter with the query

    //

    status = PdhAddCounter(perfQuery, uptimeCounterPath,
                            0, &uptimeCounter );
    if( status != ERROR_SUCCESS )
        return FALSE;


    status = <CODE>PdhCollectQueryData( perfQuery );
    if( status != ERROR_SUCCESS )
        return FALSE;

    //

    // Get the formatted counter value

    //


    status = PdhGetFormattedCounterValue( uptimeCounter, 
                    PDH_FMT_LARGE , NULL, &uptimeValue );
    if( status != ERROR_SUCCESS )
        return FALSE;

    //

    // Close the query

    //

    PdhCloseQuery( &perfQuery );

    seconds = (DWORD) (uptimeValue.largeValue);

Points of Interest

As an example of this functionality, I've decided to enhance an existing tool submitted by T.Yogaramanan on this site. I've added the ability to select the Time Origin for performing an action. You should be able to choose from the current moment and the UpTime (that's the BOOT radio button). For Windows NT, you might have to drop a pdh.dll file from Windows 2000 OS into the search path of the executable.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here