I would like to get the status of a service and if the service is not running he should be started. The output looks like this:
This is the whole script:
I hope I provided enough information.
The Service is installed on the System I choose it from the Dropdown list.
My impression is that the variable is not set correctly in the first step.
Service Status not set
Re: Service Status not set
You should specify only variable name: ServiceStatus without braces (not {ServiceStatus})
You should use braces "{}" when you need to put variable value into the string.
Braces tells to RoboTask that it's necessary to replace this substring with value of variable.
You should use braces "{}" when you need to put variable value into the string.
Braces tells to RoboTask that it's necessary to replace this substring with value of variable.
Oleg Yershov