Need analysis of service which has a variable in name

(imported topic written by ktm_200091)

Hi All,

I’m a newbie here…

trying to see if a service is running using “if exists service” + the service name

The service I am trying to find is setup as the combination of “text +Computer name”

in DOS I would write this as “Text %Computername%”

How would I write this in Big Fix language?

(imported comment written by Lee Wei)

I think this should work.

Try to put everything in lowercase for safety in the string comparison.

exists service whose (service name of it as lowercase contains ("text" & computer name as lowercase))

(imported comment written by ktm_200091)

thank you for the help!!! worked fine