If you were really in need of this, and you have perl installed on the endpoint (with the Win32::Service module) it is certainly possible using a custom script (if they haven't already added this feature). Look at something like
to get examples of how to use the module.
A simple test using Win32::Service.
--FTP Publishing service is stopped:
Display Name : FTP Publishing Service, MSFTPSVC
CurrentState : 1
--FTP Publishing service is started:
Display Name : FTP Publishing Service, MSFTPSVC
CurrentState : 4
--FTP Publishing service is paused:
Display Name : FTP Publishing Service, MSFTPSVC
CurrentState : 7
So, it's quite possible to detect the state of the service in this manner. Just write a script that looks at the CurrentState, have DM run it, and check the result.
John