I've got a simple desktop.ini file that applies a folder icon. I'd like it to work on a network location, as we have an external hard drive connected to our network. However, the desktop.ini seems to have no effect on said network.

What am I doing wrong?

link|improve this question

75% accept rate
feedback

2 Answers

You have to mark the folder as system or readonly, to make the desktop.ini work. readonly is better, as system folders are omitted from explorer-searches by default. attrib +r (folder name)

link|improve this answer
feedback

Have a read at this article http://helpdeskgeek.com/how-to/customize-folder-icons-desktop-ini/

IconFile

If you want to specify a custom icon for the folder, set this entry to the icon’s file name. The .ico file extension is preferred, but it is also possible to specify .bmp files, or .exe and .dll files that contain icons. If you use a relative path, the icon is available to people who view the folder over the network. You must also set the Icon Index entry.

In over words you will have to specify a relative path to your icon

eg ./hiddenfolder/mycoolicon.ico

Good Luck

link|improve this answer
No, that's not the problem. The desktop.ini file seems to be ignored, as none of the other commands in it are being processed either. Interestingly, I can't set it to be "hidden". – Eric Jun 7 '10 at 10:28
What OS are you using to view the shared folder? – Christopher Wilson Jun 7 '10 at 12:47
Windows XP. [15 char limit] – Eric Jun 8 '10 at 6:52
feedback

Your Answer

 
or
required, but never shown

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