Jump to content

Recommended Posts

Posted

Hi folks...Does anyone here know where XP stores the "Shutdown Time" of a pc? I am busy compiling a Bandwidth Monitor program and need this information to display the correct amount of downloaded bytes through the NIC...

Thing is, using the ""netstat -e"" command only shows the bytes since PC startup...meaning that everytime the pc is restarted, it will start from scratch...

thanks hey...

Posted

Ticks since last restart:

; Get current ticks since last restart in $avTicks[0]
    Local $avTicks = DllCall("Kernel32.dll", "dword", "GetTickCount")

Note that counter rolls over to zero about every 50 days.

:mellow:

Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
Posted

Ticks since last restart:

; Get current ticks since last restart in $avTicks[0]
    Local $avTicks = DllCall("Kernel32.dll", "dword", "GetTickCount")

Note that counter rolls over to zero about every 50 days.

:mellow:

This I will add to my Tutorial collection for future ref...thx PsaltyDS :(

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...