Rename then copy MOVE a file fails because windows still thinks file has old filename

:one: Regret one more - Call this "Folder-Ask-XX" or "FAxx"
It is with great regret that I approach once more.
The last piece in my scripting jigsaw is to alter the IC command string that @Ixp generated above to achieve the following.
I was determined to manage this one myself but alas...

:two: Variables

var Destination_Alias = 'work';
var newFolder = 'I am new here';
var Str_Suffix = ' suffix';

:three: Internal Command Actions
With the currently selected files

  1. Throw up the Opus {dlgfolder|Your choice!| + Destination_Alias}
  2. Create a subfolder in the selected (destination location defined by variable = newFolder)
  3. Add the suffix to the selected files as defined by variable Str_Suffix = ' suffix';
  4. Move the selected (and prefixed) files to the newly created subfolder

The above amount to exactly what @Ixp nutted out for me in the "have fun" script above with the single exception that the {dlgfolder|Your choice!| + Destination_Alias} is thrown up. No other difference.

:four: Target Internal Command
I believe this is the IC we want to generate from JScript.
The variables are assigned as follows:
Destination_Alias = '/work';
var newFolder = 'SubFolder';
var Str_Suffix = ' 4444'; (Noted first character is a space)

Rename PATTERN=(.*) TO="{dlgfolder|Your choice!|/Work|escregexp|noterm}\SubFolder\\\1 4444" REGEXP IGNOREEXT

:five: My Results
For what they are worth, a selection of my test results which seem to me informative are below.
Once again I have issues with backslashes having, what seems to me, random effects...