diff --git a/pyaedt/common_rpc.py b/pyaedt/common_rpc.py index 61801b8f25c..7dce1611d01 100644 --- a/pyaedt/common_rpc.py +++ b/pyaedt/common_rpc.py @@ -389,7 +389,7 @@ def launch_ironpython_server(aedt_path, non_graphical=False, port=18000, launch_ str(val), str(port1), ] - proc = subprocess.Popen(command, stdout=subprocess.PIPE, stderr=subprocess.PIPE, shell=non_graphical) + proc = subprocess.Popen(" ".join(command), shell=True) print("Process {} started on {}".format(proc.pid, socket.getfqdn())) print("Using Port {}".format(port1)) print("Warning: Remote CPython to Ironpython may have some limitations.")