0

How do I add items to Windows Explorer right-click context menu called New?

Jonathan Allen
  • 337
  • 1
  • 3
  • 7

2 Answers2

1

On Windows XP it appears they are registry entries. On my machine it's all listed under

HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Discardable\PostSetup\ShellNew
John Gardeniers
  • 27,262
  • 12
  • 53
  • 108
0

Sample using ".sql" files.

  1. Start -> Run
  2. %userprofile%\Templates
  3. Copy NewProc.sql
  4. Edit the registry

[HKEY_CLASSES_ROOT.sql\ShellNew] Value Name = FileName Value Data = NewProc.sql

Seems kinda kludgy and to only support one new item per file type, so I'm on the lookout for a better answer.

Jonathan Allen
  • 337
  • 1
  • 3
  • 7