Re-add "create new text file" to Windows 11 context menu
Hire the world's top talent on demand or became one of them at Toptal: https://topt.al/25cXVn
and get $2,000 discount on your first invoice
--------------------------------------------------
Music by Eric Matyas
https://www.soundimage.org
Track title: Dreamlands
--
Chapters
00:00 Re-Add &Quot;Create New Text File&Quot; To Windows 11 Context Menu
00:28 Answer 1 Score 52
01:15 Answer 2 Score 8
01:37 Answer 3 Score 11
02:29 Answer 4 Score 34
03:05 Thank you
--
Full question
https://superuser.com/questions/1685353/...
--
Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...
--
Tags
#contextmenu #windows11upgrade
#avk47
ANSWER 1
Score 52
What spikey_richie suggests will reset the whole context menu back to the look from Windows 10 which might be what someone wants but does not answer the OP's specific question.
I was looking for a way to only get the "Create New Text Document"-option back. Found this great page: https://www.tenforums.com/tutorials/24412-add-remove-default-new-context-menu-items-windows-10-a.html
And used the "Restore_New_Text_Document_context_menu_item.reg"-file which worked great.
To only restore what the OP asked, the following .reg file is the only thing needed. A sign out/sign in OR reboot is needed for explorer.exe to pick up the change.
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\.txt\ShellNew]
"ItemName"=hex(2):40,00,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,6e,00,6f,00,74,00,65,00,70,00,61,00,64,00,2e,00,65,00,78,00,65,00,2c,00,2d,00,34,00,37,00,30,00,00,00
"NullFile"=""
[HKEY_CLASSES_ROOT\txtfilelegacy]
@="Text Document"
ANSWER 2
Score 34
What worked for me was resetting the Notepad app -- Settings; Apps; Apps & features; next to "Notepad", select the three dot pop-up menu; Advanced options; select Reset. It appears to effectively do an uninstall/reinstall of notepad and resets the associated settings. "Text Document" has returned as an option under the right-click, New menu.
You will likely need to restart Explorer for the new option to show up:
ANSWER 3
Score 11
If you want to manually change the registry (always make a backup before editing) without resetting it to the Windows 10 look, here are the steps that worked for me:
- Open the registry editor and move to
HKEY_CLASSES_ROOT\.txt
- Add a new
Key
calledShellNew
- Move to the new key (i.e.
HKEY_CLASSES_ROOT\.txt\ShellNew
) - Add a new
String Value
with the nameNullFile
Now, the only thing missing is the name shown in the context menu. Because it has none per default, the entry does not show up yet. To change this:
- Move to
HKEY_CLASSES_ROOT\txtfilelegacy
- Change the
(Default)
value toText File
(or any other name you'd like)
Et voilĂ ! It should show up, no reboot needed. (Edit: Maybe you do need to restart explorer.exe, as David Moylan pointed out.) If you want to add a template for the file, this might work, but I did not try it.
ANSWER 4
Score 8
Not an answer to the question per se, but a quick work-around:
- New > Word Document
- Rename it to myfile.txt
Blank word files are just blank files, so this creates a blank file with a .txt extension, as needed.