====== GetUptime ====== GetUptime() GetUptime The command gets the number of milliseconds that have elapsed since system startup. It can be used to estimate the delays generated by commands launched in the configuration. **Parameters** None. **Switches** None. **Example** T1 = GetUptime() ... T2 = GetUptime() ... T3 = GetUptime() Diff1 = T2 - T1 Diff2 = T3 - T2 Command notation: GetUptime T1 ... GetUptime T2 ... GetUptime T3 Set /C Diff1 %T2%-%T1% Set /C Diff2 %T3%-%T2%