Command line timer status

Is there a command line that will let me view the status of a timer and/or all currently running timers? I’m just curious to find a way to watch a command line manually if it’s possible.

Nope.

If you kept a handle to the timer when you created it, you can check its state within a rule usings methods
xx.isRunning - meaning timer has gone off and is now running its code block.
xx.hasTerminated. - meaning its all done.
if neither is true, its still ticking awaiting scheduled time.

Not really sure what you mean here?
LogInfo() is a good way to monitor progress.