Here is my solution to the problem with the help from this-is-me and a leson on mod() I came up with this.
$temp = timerstop(0)
$Daytemp = Int($Temp / 86400000)
$HourTemp = Int(Mod($Temp , 86400000) / 3600000)
$MinTemp = Int(Mod(Mod($Temp , 86400000) , 3600000) / 60000)
$SecTemp = Int(Mod(Mod(Mod($Temp , 86400000) , 3600000) , 60000) / 1000)
Msgbox(0,'Uptime', ' Days: ' & $DayTemp & @CRLF &_
' Hours: '& $hourTemp & @CRLF &_
' Minutes: ' & $MinTemp & @CRLF &_
' Seconds: ' & $SecTemp)
This is consistant with the times I am getting from the uptime command in windows.
@this-is-me
Thanks for pointing me in the right direction.
-magicboy-