How to complete the Fluent Startup Options

Hi there. I'll start with I have no idea how to program/script in Python!

We have several setup scripts that we've used for many versions of Ansys. When we upgraded to 2023R2, the setup scripts no longer functioned. Through some debugging on my own, I saw that the startup options changed from 2021R2 to 2023R2.

In Workbench, we create tiles for the geometry and mesh. We then run a python script using File->Scripting-> and select the python file. The script creates Laminar and Turbulent Fluent tiles and performs all of the CFD setup.

What happens with the current script is, a session of Fluent is started, cores are pulled on our HPC and then everything pauses and eventually fails, never fully opening a Fluent session and completing the setup. I can directly open a 2023R2 Fluent session successfully.

Here's the Python line of code that I think needs updating. Anyone out there able to correct/update this for me? Greatly appreciated!

fluentLauncherSettings1.SetEntityProperties(Properties=Set(Dimension="ThreeD", Precision="Double", UseJobScheduler=True, FluentRootEnv=r"\ithsvhhn1\Ansys Inc\v212\fluent", EnvPath="c:\cfd\FluentTempFiles", RunParallel=True, NumberOfProcessors=32, MpiType="msmpi", UseSharedMemory=False, ClusterHeadNode="ithsvhhn1.ithaca.morse.borgwarner.net"))

Brian