Is there a way of extending the answer to this question to include the string " New Folder". e.g. "20221029 New Folder"
Current workaround that I am using in this Registry Key
Computer\HKEY_CLASSES_ROOT\Directory\Background\shell\NewFolderWithDate\command
is
cmd.exe /c powershell New-Item -ItemType Directory -Path ".\$((Get-Date).ToString('yyyyMMdd New'))"
This works in cmd.exe but with no spaces:
powershell New-Item -ItemType Directory -Path ".\$((Get-Date).ToString('yyyyMMdd'))NewFolder"