When I right click anywhere I get an option to add a new file with a specified extension. I would like to add some custom files into this menu, so I can right click and create a new PHP file for instance.
How can I do this?
11 Answers 11
To add extensions of your choice to the list: create a file, add the content below, save it as whatever.reg, and run it.
Note: Replace .png with the file extension you want to add and replace whatever with anything you want.
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\.png\ShellNew]
"NullFile"=""
-
1This didn't work for me in Windows 7. I had two other existing keys below ".doc" (PersistentHandler and Word.Document.8.) Could that interfere with this? The contents of the .reg file I added to my Reg were: Windows Registry Editor Version 5.00 [HKEY_CLASSES_ROOT\.doc\ShellNew] "NullFile"=""Clay Nichols– Clay Nichols2011年01月31日 15:15:11 +00:00Commented Jan 31, 2011 at 15:15
-
This didn't work for me when I tried to add a .tex extension for LaTeX editing. I did try a restart.Lokathor– Lokathor2012年01月11日 09:13:59 +00:00Commented Jan 11, 2012 at 9:13
-
1I had to run the
.regfile twice to make it work. Thank you for this answer.Aakash– Aakash2016年03月15日 13:00:07 +00:00Commented Mar 15, 2016 at 13:00 -
Didn't work for me in Windows 8.1 :( I retried repeatedly, and restarted too.Gabriel Staples– Gabriel Staples2016年10月30日 21:19:31 +00:00Commented Oct 30, 2016 at 21:19
-
7Didn't work for me in Windows 10, 1709 :( Restarted explorer and restarted machine even, still...Arete– Arete2018年01月12日 11:29:44 +00:00Commented Jan 12, 2018 at 11:29
One more thing:
If you want to add a file as a template for the new item, use
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\.html\ShellNew]
"FileName"="html.html"
and then place the file (html.html) in:
- For your own profile:
%Userprofile%\Templates - For all users:
%Allusersprofile%\Templates - For the whole system:
%Systemroot%\ShellNew
One more detail: if you want to delete the "Windows Live Call" entry, use:
[-HKEY_CLASSES_ROOT\.wlcshrtctv2\LiveCall\ShellNew]
-
2In case anyone is wondering, the
FileNameentry appears to override theNullFileentry mentioned in other answers. You don't seem to need to delete an existingNullFilevalue. However, having both entries does seem to confuse some other 3rd party utilities, such as NirSoft's ShellMenuNew. (Windows 7)MrWhite– MrWhite2013年11月01日 10:55:35 +00:00Commented Nov 1, 2013 at 10:55 -
2I don't think it needs to be in %Userprofile%Templates etc if you give the whole path name to the file.jiggunjer– jiggunjer2015年06月20日 02:39:49 +00:00Commented Jun 20, 2015 at 2:39
-
3What do I do if I want to create two shortcuts to two different templates for the same program? For instance, I used this method perfectly to create a context menu item for an "article" template for TeXworks. I now want to also add a "modified_article" template for TeXworks. Can I add both to the context menu? Thanks!Prahar– Prahar2016年05月22日 18:19:01 +00:00Commented May 22, 2016 at 18:19
-
@Prahar That's a new question you should ask separatelyTobias Kienzler– Tobias Kienzler2016年07月15日 11:12:24 +00:00Commented Jul 15, 2016 at 11:12
-
4In Windows 8.1, the Templates folders you list do not work. I get an "access denied" error. Where Templates should be is now a shortcut folder thing called a "junction" apparently--and it is a hidden "operating system specific" file. Therefore, the Templates folder is now moved. See this link for the new mapping (jimmah.com/vista/Security/junctions.aspx). Apparently it's now
C:\Users\USER_NAME\AppData\Roaming\Microsoft\Windows\Templatesfor your own profile, for example.Gabriel Staples– Gabriel Staples2016年10月30日 20:29:12 +00:00Commented Oct 30, 2016 at 20:29
Go in to registry editor and expand HKEY_CLASSES_ROOT
Go to .file_extention
and create a key called ShellNew
Inside that, create a new string key called NullFile with no value
For example, if I wanted to create a new entry for a blank .wil object* I would create
[HKEY_CLASSES_ROOT\.wil\ShellNew]
NullFile = ""
*if the file extension such as .wil does not exist, I would first create a file with that extension and double click it. Open it with the program of my choice as this would then create the other needed registry keys and make your job easier.
-
4Dosen't work on Windows 10, also I found this article, but this not working either: askvg.com/how-to-add-remove-items-from-new-menu-in-windowsNeo– Neo2016年04月29日 22:28:06 +00:00Commented Apr 29, 2016 at 22:28
ShellNewHandler helped me to restore my Windows 7 shell menu> New> txt document entry.
enter image description here
- Uncheck .txt
- Click Apply
- Check .txt
- Click Apply
-
4Does this allow you to add new entries? From the screenshots and description it doesn't appear to.MrWhite– MrWhite2013年11月01日 10:16:23 +00:00Commented Nov 1, 2013 at 10:16
-
7this does NOT allow you to add entries... so it is completely irrelevant to the topic.Eric Sebasta– Eric Sebasta2017年06月06日 14:05:13 +00:00Commented Jun 6, 2017 at 14:05
It seems that the other solutions here are outdated. At least none of these worked for me in Windows 10 v. 1709 Build 16299.192 (Edit: still works in version 1809). I did some testing in a VM and this is what works in Windows 10 1709, as of 2018年01月12日:
Add the registry file:
Create a new registry file file with the following content:
Windows Registry Editor Version 5.00
; new file type
[HKEY_CLASSES_ROOT\.xyz]
@="xyz"
; template
[HKEY_CLASSES_ROOT\.xyz\ShellNew]
"FileName"=""
; file type name
[HKEY_CLASSES_ROOT\xyz]
@="XYZ test file"
Replace xyz with the extension you would like to add. And replace XYZ test file with the name of the file extension (e.g a .scss file would be "syntactically awesome style sheet file"). If you want to use a template file see the explanation below.
It might be necessary to restart Windows Explorer after you have added the registry file. You can restart explorer.exe by typing the following in CMD:
taskkill /f /im explorer.exe & start explorer.exe
Explanation of the code:
[HKEY_CLASSES_ROOT\.xyz]
@="xyz"
Will create a new file type in the registry.
[HKEY_CLASSES_ROOT\.xyz\ShellNew]
"FileName"=""
This will enable you to use a template for all new files of this file format. We could for example write "template.xyz" and make a new file called "template.xyz" and use it a s a template. So each time you make a new file it will be populated with pre-made content. As Eduardo Molteni mentioned the paths for the template files are:%appdata%\Microsoft\Windows\Templates, %programdata%\Microsoft\Windows\Templates or for the whole system %Systemroot%\ShellNew. In this example we haven’t specified any template name because we don’t want to use any.
[HKEY_CLASSES_ROOT\xyz]
@="XYZ test file"
This will be the name of the file type both for the context menu and the newly created files. As far as I know leaving this value blank does not work.
Icon:
The icon is added once Windows have associated a software with the file type.
-
5Great answer, thanks. Please note in Windows 10,
%userprofile%\Templateshas moved to%appdata%\Microsoft\Windows\Templatesand%Allusersprofile%\Templateshas moved to%programdata%\Microsoft\Windows\TemplatesTheImirOfGroofunkistan– TheImirOfGroofunkistan2018年05月30日 16:18:42 +00:00Commented May 30, 2018 at 16:18
None of these methods were working for me in Windows 10.
I finally found this page that explained that you need to reference another key that contains the name and default icon.
This is the minimum needed to create an entry, but it won't have an icon.
NOTE: the third entry is for a new key textfile referenced in the (Default) value of .txt
Windows Registry Editor Version 5.00 [HKEY_CLASSES_ROOT\.txt] @="textfile" [HKEY_CLASSES_ROOT\.txt\ShellNew] "NullFile"="" [HKEY_CLASSES_ROOT\textfile] @="Text Document"
Here are two ways to specify an icon
- Tell Explorer to use the default icon for the content type:
[HKEY_CLASSES_ROOT\.txt] @="textfile" "Content Type"="text/plain" "PerceivedType"="text"
or 2. Specify an icon under textfile like so:
[HKEY_CLASSES_ROOT\textfile\DefaultIcon] @="%SystemRoot%\\system32\\imageres.dll,-102"
Oh, and at least for me, just closing and reopening Explorer (make sure to close all instances) is enough to reload the context menu. You don't need to restart the whole machine.
-
At my side "Notepad++" changed the
HKEY_CLASSES_ROOT\.txtto@="Notepad++_file". So addingHKEY_CLASSES_ROOT\Notepad++_filewith@="Textfile"did the trick. Thanks, good find!Tino– Tino2017年07月28日 20:38:59 +00:00Commented Jul 28, 2017 at 20:38
For removing entries from the list, here is a program which allows you to enable/disable entries from a GUI. Much easier than searching the registry!
Unfortunately, it does not allow you to add entries.
This information is all officially documented by Microsoft; normally intended for developers who are registering their own new file types.
Extending the New Submenu
When a user opens the File menu in Windows Explorer, the first command is New. Selecting this command displays a submenu. By default, it contains two commands, Folder and Shortcut, that allow users to create subfolders and shortcuts. This submenu can be extended to include file creation commands for any file type.
To add a file-creation command to the New submenu, your application's files must have a file type associated with them. Include a ShellNew subkey under the key for the file name extension. When the File menu's New command is selected, the Shell will add it to the New submenu. The command's display string will be the descriptive string that is assigned to the program's ProgID.
Assign one or more data values to the ShellNew subkey to specify the file creation method. The available values follow.
Command: Executes an application. This is a REG_SZ value specifying the path of the application to be executed. For example, you could set it to launch a wizard.Data: Creates a file containing specified data. Data is a REG_BINARY value with the file's data. Data is ignored if either NullFile or FileName is specified.FileName: Creates a file that is a copy of a specified file. FileName is a REG_SZ value, set to the fully qualified path of the file to be copied.NullFile: Creates an empty file. NullFile is not assigned a value. If NullFile is specified, the Data and FileName values are ignored.
And example create a new empty mpy file:
HKEY_CLASSES_ROOT
(Default) = MyProgram.1
MyProgram.1
.myp
ShellNew
NullFile
To create a new file based on a specific template file:
HKEY_CLASSES_ROOT
.myp
(Default) = MyProgram.1
MyProgram.1
ShellNew
FileName: REG_SZ = "%ProgramData%\Microsoft\Windows\Templates\MyNewTemplate.myp"
-
This is the most helpful answer I've seen so far, but I'm still having difficulty with the
Commandvalue. UnderHKCR\.txt\ShellNew, I set the data as"C:\Program Files\Notepad++\notepad++.exe" "%1"and it while it does create a new TXT file, it does not launch Notepad++, which is the behavior I'm really looking for. Any advice?ETL– ETL2024年02月07日 03:27:34 +00:00Commented Feb 7, 2024 at 3:27
You didn't say what version of Windows you're using--if it's XP you can download the TweakUI PowerToy from Microsoft (also covered in Wikipedia). Click on Templates and add/remove file types to your heart's content. Here's what it looks like: enter image description here
Create a plain text file and add the following line to it:
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\.txt\ShellNew]
"NullFile"=""
Save the file and rename it's extention to a .reg file. E.g. "myNewItem.reg". Be sure that you renamed the extention and not only the file name like (myNewItem.reg.txt)
Double click the file and it will update your registry.
The next step, and that is very important, restart your computer directly. So DON'T try to open the content menu to see if it's already works! First restart you computer.
If you open the content menu to see if your amazing new item is already listed, the registry will be restored ...
Also try this program: http://sourceforge.net/projects/shellnewhandler/
-
whether or not I restart immediately I can't get this to work in Windows 8.1. No idea why.Gabriel Staples– Gabriel Staples2016年10月30日 23:19:02 +00:00Commented Oct 30, 2016 at 23:19
-
The linked tool says it is for Win7 or Win VistaPythoNic– PythoNic2023年09月03日 17:31:08 +00:00Commented Sep 3, 2023 at 17:31
PowerToys New+ (for Windows 10 and 11)
If you have Windows 10 or 11:
Go to PowerToys GitHub release page and install it
In the PowerToy settings dialog, under "File Management" click on "New+"
Enable New+ and choose the location of your Templates
In the right-click context menu of File Explorer, a new entry "New+" will show up with all your templates
NullFile/FileNameto an existing entry) in Windows 7, then see this other question... superuser.com/questions/588647/…