Hi!
I had the same error message about reinstalling “CL Studio”.
Because I was very desperate to get the program working today, I started to debug the problem.
After a very hefty debugging session I finally found the root cause:
The “Studio-Program” tries to communicate with the “Agent-Service” via a named pipe. When the pipe can not be opened, the (not very specific) error message is shown. I determined that the service component fails to create the pipe and exits with an exception. The exception happens because the program tries to set the access rights for the pipe to R/W for “Everyone”. This is the culprit: The user ID “Everyone” is only resolvable on systems with an English language installation. I am on a German system, where this should read “Jeder” in order to work correctly. The correct solution would be to use “new System.Security.Principal.SecurityIdentifier(System.Security.Principal.WellKnownSidType.WorldSid, null)” instead of “Everyone”.
I have a temporary fix until the program is updated: Simply create a user named “Everyone” on the system and use that to run CL Studio Live
Kind regards,
Stefan