Whilst i have found posts that tell me how to add a new context item for a specific file type, i seem to be unable to see a way of adding one for a blank file (a la ubuntu). Is there a way of adding just a blank file (with no extension), which i can then rename myself with the appropriate extension?

link|improve this question

45% accept rate
feedback

2 Answers

The NullFile types create empty/0-byte "blank" files. You can rename them to whatever you like, with whatever extension you like, and go from there.

Details about resolving the "new text document" being missing here.

link|improve this answer
feedback

You can create a template for .dummy (or whatever unused extension you like) files, then add a flag to indicate they should be created with no extension.

Here are the steps I followed:

  1. Create a file called 'asdf.dummy'
  2. Double-click on it, tell windows to always open it with notepad
  3. In regedit, go to "HKEY_CLASSES_ROOT\.dummy"
  4. Create the "ShellNew" key
  5. Under "ShellNew", create an empty string value named "NullFile"
  6. Under "ShellNew", create a key named "Config"
  7. Under "Config", create an empty string value named "NoExtension"

Here's what I ended up with:

Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\.dummy]
@="dummy_auto_file"

[HKEY_CLASSES_ROOT\.dummy\ShellNew]
"NullFile"=""

[HKEY_CLASSES_ROOT\.dummy\ShellNew\Config]
"NoExtension"=""
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.