I have a number of files on my Windows 7 machine with .htm extensions. When I right click on these files I get a menu of options (Open/Edit/Print etc.) The EDIT option is currently mapped to Microsoft Word and I want to map it to Notepad.

I have tried right clicking on the file and selecting Open With/Choose default program but that only lets me set the program for the Open menu item not the Edit menu item. I have also tried Start/Default Programs/Associate a file type, but this also only lets me change the Open option.

Any ideas? I am sure I used to be able to do this in Windows XP.

link|improve this question
feedback

6 Answers

up vote 3 down vote accepted

To change it without using 3rd party software:

Open Internet Explorer. Go to Tools > Internet Options. Select the Programs tab. Change the 'HTML Editing' option to whatever you want to use (e.g. Notepad).

link|improve this answer
1  
Talk about hiding the setting away where you won't find it. I would never have thought to look there in a million years. – Martin Brown Mar 16 '11 at 9:37
feedback

I was just about to refer you to the Folder Options -> File Types menu until I realized that you're using Windows 7. Microsoft in their wisdom removed/didn't recreate this tab in Windows 7.

I've used this utility on several occasions and its performed as expected (opening in its own window but performing the same task): http://www.nirsoft.net/utils/file_types_manager.html

link|improve this answer
feedback

Reccommending Default Programs Editor for this, because along with many other features, it was designed for Vista/Windows 7 and plays nice with UAC.

The context menu editor is quite powerful, allowing you to add or edit context menu items without hassle:

Context Menu Editor

Additionally, it allows you to remove that 'default programs' association that Windows won't let you un-check:

Uncheck default programs

link|improve this answer
1  
I second this one. I like how it integrates with the control panel, as well. – Uninspired Mar 16 '11 at 2:30
feedback

the problem here is not file association, unless you want to associate Notepad as the default program to open all HTML files (rather than your web browser).

i recommend this method instead:

1. Enter the program's executable name (notepad.exe) as a subkey of these two registry key's shown below:

[HKEY_CLASSES_ROOT\.htm\OpenWithList\notepad.exe]
[HKEY_CLASSES_ROOT\.html\OpenWithList\notepad.exe]

2. And add an "edit" subkey here:

[HKEY_CLASSES_ROOT\Applications\notepad.exe]
[HKEY_CLASSES_ROOT\Applications\notepad.exe\shell]
[HKEY_CLASSES_ROOT\Applications\notepad.exe\shell\edit]
[HKEY_CLASSES_ROOT\Applications\notepad.exe\shell\edit\command]
Default = C:\WINDOWS\notepad.exe "%1"

3. To change the default editor, replace the "Default" entry in this registry key with the command line for your prefered editor:

[HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Default HTML Editor]
[HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Default HTML Editor\shell]
[HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Default HTML Editor\shell\edit]
[HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Default HTML Editor\shell\edit\command]
Default = C:\WINDOWS\notepad.exe "%1"
link|improve this answer
feedback

Creative Element Power Tools includes a File Type Doctor program that can do it...

alt text

link|improve this answer
feedback

Ramesh Srinivasan has written a script to add a new program to the list. Download it here: http://windowsxp.mvps.org/htmleditor.htm

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.