how to use folder as wallpaper on window xp
1. Open Command Prompt and set folder attribute to system using attrib command. Suppose there is a folder "Setup" in "D:\" drive, in which you want to set a wallpaper as background image. So give following command in Command Prompt:A. Using Desktop.ini Trick to Set a Wallpaper as Folder Background Image:
attrib +s D:\SetupIt'll change the folder attribute to system.
2. Now open Notepad and paste following code:
[ExtShellFolderViews]Change "path_of_the_wallpaper" string to the exact path of the wallpaper which you want to set as background. Suppose the wallpaper is stored in "D:\Wallpaper\Image1.jpg", then the code will be as following:
{BE098140-A513-11D0-A3A4-00C04FD706EC} = {BE098140-A513-11D0-A3A4-00C04FD706EC}
[{BE098140-A513-11D0-A3A4-00C04FD706EC}]
Attributes=1
IconArea_Image=path_of_the_wallpaper
IconArea_Text=0x00000000
[ExtShellFolderViews]NOTE: If you copy the wallpaper in the same folder which you are editing, then you can simply put the wallpaper name in the file. e.g. if you copy the "Image1.jpg" file in "Setup" folder, then the code will be as following:
{BE098140-A513-11D0-A3A4-00C04FD706EC} = {BE098140-A513-11D0-A3A4-00C04FD706EC}
[{BE098140-A513-11D0-A3A4-00C04FD706EC}]
Attributes=1
IconArea_Image=D:\Wallpaper\Image1.jpg
IconArea_Text=0x00000000
[ExtShellFolderViews]"IconArea_Text" stands for the text color, you can change it to white, yellow, blue, black or any other color. You just need to know the hexadecimal number of the color and then replace the code in "IconArea_Text" section. A few widely used color codes are as follows:
{BE098140-A513-11D0-A3A4-00C04FD706EC} = {BE098140-A513-11D0-A3A4-00C04FD706EC}
[{BE098140-A513-11D0-A3A4-00C04FD706EC}]
Attributes=1
IconArea_Image=Image1.jpg
IconArea_Text=0x00000000
Black - 0x00000000
White - 0x00FFFFFF
Green - 0x0000FF00
Blue - 0x00FF0000
Purple - 0x00C000C0
Red - 0x000000FF
Yellow - 0x0000FFFF
Indigo - 0x00FFFF00
Comments
Post a Comment