Hello 
Mechanical scripting: thanks to the previous effort described in this forum the simple script below runs the solving process and gets the results (from remote machine). Now, I would like to run the post APDL snippets. There is well documented "ExecutePostCommands" command, which unfortunately do nothing in my script. Any advice on how to set-up the environment to make it run the apdl snippets? So far, it looks like running this command have no effect:
1) After running the whole script below, the post command objects have green ticks but there is no any post command gistory nor files that should be results of the post command script in the solver directory.
2) If the post command object has a lighting icon, there is no response after issuing the single ExecutePostCommands.
analysis_number = 1
analysis = Model.Analyses[analysis_number]
print("*** solving: " + str(analysis.Name) + " ")
analysis.Solve()
print(' solved ')
print(' getting results ')
analysis.Solution.GetResults()
print(' results got ')
print(' executing post commands ')
analysis.Solution.ExecutePostCommands
print(' post commands executed ***')
The other issue is that I have no idea how to insert code in this forum in a neat form.