You have to provide more information if you want us to help you. Didn't you notice that your console window hides the code that attempts to set parameters? So we would not be able to tell you, whether your code is correct or not.
In any case:
1. This works correctly for me:
for model in sys.argv[1:]:
with cplex.Cplex(model) as cpx:
cpx.parameters.read.datacheck.set(cpx.parameters.read.datacheck.values.off)
cpx.solve()
No display of the data check parameter (and if I comment out setting the parameter then I get the display)
2. About the thread count: are you sure you are in a part were things should actually run in parallel? Maybe you are still building your model or CPLEX is in a section that is inherently sequential. Doesn't the CPLEX log output show a line that says CPLEX will use up to 20 threads? Can you show the log output?
#CPLEXOptimizers#DecisionOptimization