I removed 11.7 but I still have the download and can probably create that file. That will be later in the day.
For the PostBuild command that I was getting in 11.6 and 11.7:
( py -3 $PROJ_DIR$/../../../../../../../tools/imagetool/dk6_image_tool.py -s 294912 "$TARGET_PATH$" || python3 $PROJ_DIR$/../../../../../../../tools/imagetool/dk6_image_tool.py -s 294912 "$TARGET_PATH$" ) && arm-none-eabi-objcopy -v -O binary "$TARGET_PATH$" "$TARGET_PATH$.bin"
When this first occurred, I had followed the instructions to install Python 2.7 which went OK.
Then, this command wanted python3 which I assumed was Python 3.x so I installed that and renamed the executable to python3.
During all of this stepping through the process, I was getting $TARGET_PATH$ becoming "ARGET_PATH". It took a long time to chase this down to the command line as I thought that maybe it was in a script or something. I fixed most of this by changing $TARGET_PATH$ to $(TARGET_PATH)
Thank you for your reply and attention
D