Fidelis K said:
I want to assign different icons to different hard drives/partitions/DVD
drives in "My Computer" and "Windows Explorer." Is it possible?
You can modify the registry to give default names and icons for specific
drive letters. I've done this with most of my drives, including mapped
network drives.
The following text (between the SNIPs) placed into a file named
SOMETHING.REG and then imported to the registry will pu the name "Memory
Stick Reader" on drive F:, with the icon "MemoryStick.ico"
- - - - - - - SNIP - - - - - - -
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\DriveIcons\F]
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\DriveIcons\F\DefaultIcon]
@="c:\\Windows\\Icons\\MemoryStick.ico"
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\DriveIcons\F\DefaultLabel]
@="Memory Stick Reader"
- - - - - - - SNIP - - - - - - -