Hi, I have created a .ini file in one of my folders and - in order to give it a customised icon - I added the following line: [.ShellClassInfo] ConfirmFileOp=1 IconFile=..\Custom.ico IconIndex=0 The icon Custom.ico resides in the parent folder. Thus I created a relative path using ..\ in order to link to the icon contained one level up in the hierarchy. It works just fine! The problem is that I would like to link to an icon wich must be TWO levels up and not just one from the foder containing the .ini file. I tried to modify as follows but it did not work: [.ShellClassInfo] ConfirmFileOp=1 IconFile=..\..\Custom.ico IconIndex=0 Does anyone know why ..\..\ is not the right solution? Or what am I missing in the code? Thank you.