开机时间: #NoTrayIcon t_TimeFormat := "HH:mm:ss dddd" t_StartTime := ; Clear variable = A_Now t_UpTime := A_TickCount // 1000 ; Elapsed seconds since start t_StartTime += -t_UpTime, Seconds ; Same as EnvAdd with empty time FormatTime t_NowTime, , %t_TimeFormat% ; Empty time = A_Now FormatTime t_StartTime, %t_StartTime%, %t_TimeFormat% t_UpTime := % t_UpTime // 86400 " days " mod(t_UpTime // 3600, 24) ":" mod(t_UpTime // 60, 60) ":" mod(t_UpTime, 60) MsgBox 64, Uptime, % "Start time: `t" t_StartTime "`nTime now:`t" t_NowTime "`n`nElapsed time:`t" t_UpTime ExitApp