Depending on your answers to the following questions I might have a solution for you.
Will you be okay if new file will be created, but explorer won't focus on it (if there are many files in the folder you might have to scroll for that new one)?
Normally freshly created file gets focused and highlighted for renaming (not the case in my workaround).
Also, in my workaround you can't create Text_document.txt, Text_document(1).txt and Text_document(2).txt). You would have to create first one, rename, create a second one etc. Otherwise, first file will be overwritten by a second one.
If you are okay with these limitations, here is the solution:
1. Create empty file Sample.txt in folder C:\Windows\SHELLNEW
2. Run the following reg file:
Code:
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\.avi\ShellNew]
"Command"="cmd.exe /c copy \"C:\\Windows\\SHELLNEW\\Sample.txt\" \"%1.txt\""
"IconPath"=hex(2):25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,6f,00,6f,00,\
74,00,25,00,5c,00,73,00,79,00,73,00,74,00,65,00,6d,00,33,00,32,00,5c,00,69,\
00,6d,00,61,00,67,00,65,00,72,00,65,00,73,00,2e,00,64,00,6c,00,6c,00,2c,00,\
2d,00,31,00,30,00,32,00,00,00
"ItemName"="@%SystemRoot%\\system32\\notepad.exe,-470"
"MenuText"="@%SystemRoot%\\system32\\notepad.exe,-470"
I have chosen avi, because it was registered in the system already and it starts with A, so it will be at the top of the list. But you can use any other registered file type or create a new one.
Restart/log-off might be required to pick up new registry settings.
Basically, script copies Sample.txt with a new name in the desired folder.
.