I do like Notepad++, but I hate its icon. I'm very happy with Windows 7 icons for txt/ini/... files, and would like to keep them. How can I associate Notepad++ with all supported filetypes without changing icons? With Notepad2, the problem did not occur.

link|improve this question

71% accept rate
feedback

1 Answer

You can adjust the icon by editing the registry:

How to Change the Icon for a File Type in Windows 7 and Vista

Ramesh Srinivasan

Windows XP and earlier Operating Systems include the most useful File Types tab in the Folder Options applet. This tab was removed in Windows Vista and Windows 7 and replaced by Default Programs, which lacks many features that the File Types tab has. This forced users to look for third-party utilities to manage file type associations and customize the icons. This article provides information on how to manually change the icon for file types in Windows 7 and Vista. Tired of editing the registry? You can automate the following task using Default Programs Editor. See our recent article Using Default Programs Editor to Change File Type Icons in Windows 7 and Windows Vista Customizing the Icon for a File Type

(For illustrative purposes, let’s assume that you have a custom file type .abc (for purposes of illustration) for which you want to change the icon.

  1. Click Start, type Regedit.exe and press ENTER

  2. Navigate to the following branch: HKEY_CURRENT_USER \ Software \ Microsoft \ Windows \ CurrentVersion \ Explorer \ FileExts \ .abc \ UserChoice

  3. In the right-pane, note down the value data for Progid (e.g. abcfile). This is the user chosen (via Default Programs) Programmatic Identifier for the file extension.

  4. If the UserChoice branch does not exist, navigate to the following branch: HKEY_CLASSES_ROOT \ .abc

  5. In the right-pane, note down the (default) value data (e.g. abcfile). This is the Prog ID for the file extension.

  6. Navigate to the following key (where abcfile is the Prog ID noted in Step 2 or Step 4 above): HKEY_CLASSES_ROOT \ abcfile \ DefaultIcon Note: If the DefaultIcon key does not exist by default, you need to create it manually.

  7. In the right-pane, double-click (default) and mention the path to your custom icon (.ico file or reference to an icon resource from a EXE/DLL file). Hint: You may use the icon picker dialog box to choose an icon from a EXE/DLL file. To launch the icon picker dialog, right-click on a folder in your system, click Properties. Click the Customize tab, and click Change Icon… button. Use the icon picker to choose the icon and make a note of the index. The index starts from "0" and you need to proceed vertically when counting (top to bottom.) Once noted down the icon index, simply cancel the icon picker dialog and close folder properties dialog. For example, to set the 260th icon in Shell32.dll (contains a text pad icon), type the following path: C:\Windows\System32\Shell32.dll,260

  8. Exit the Registry Editor.

Restart Windows for the icon change to take effect. In case it doesn’t, you can force a icon refresh manually, or try rebuilding the icon cache using Disk Cleanup.

Source: http://www.winhelponline.com/blog/change-file-type-icon-windows-7-and-vista/

link|improve this answer
Thanks, but the problem is that I'll have to do this for every single file associated with notepad++... +1 anyway =) – CFP Dec 16 '10 at 21:48
feedback

Your Answer

 
or
required, but never shown

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