[Esmail] > Is there a way to display how long a Win XP system has been up? > Somewhat analogous to the *nix uptime command.
[Greg] >>> import win32api >>> print "Uptime:", win32api.GetTickCount(), "Milliseconds" Note that in the unlikely event of your Windows machine being up for longer than 2^32 ms (about 49 days), GetTickCount() will wrap back to zero. -- Richie Hindle [EMAIL PROTECTED] -- http://mail.python.org/mailman/listinfo/python-list