View Full Version : How to add an Image to your folder background
Thenura
07-06-2007, 07:44 PM
http://img257.imageshack.us/img257/1989/untitled1xk3.th.jpg (http://img257.imageshack.us/my.php?image=untitled1xk3.jpg)
a tested one full size click it
First download the file (http://www.sendspace.com/file/zq2byr) (you cant see it ,to see it go to tools/ folder options/veiw and remove the tic for hidden files and windows protected files now u can see it)
it is a hidden file named desktop
1. copy the desktop named file into a folder and change the icon in it
2. copy a image (JPG) also to that folder ( 850 - 638)
3. name it as thenura
4. refresh the folder (right click near to a file)
enjoy
Tissaka
07-06-2007, 07:47 PM
:lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol:
thnx thnx :lol: :lol: :lol:
Heshanck93
07-06-2007, 07:55 PM
mage FOLDER OPTIONS naane
Thenura
07-06-2007, 07:58 PM
machan eka folder eke uda hariye thiyana tools eke athi
tckrockz
07-06-2007, 08:01 PM
nt 4 vista ne ehenam epoo
Thenura
07-06-2007, 08:07 PM
aulak neeeee
Anusha
07-06-2007, 08:14 PM
mage FOLDER OPTIONS naane
:rofl:
x-pert
07-06-2007, 08:15 PM
Step 1- Open up notepad
Type in the exact line below:
[{BE098140-A513-11D0-A3A4-00C04FD706EC}]
Note: The above line contains only zeroes and not the alphabet O.
Specify the picture to use: Now, in the next line we will specify the picture that we want to use as the background for the folder. We will do this by typing the following line:
iconarea_image=C:\My Pictures\picture.bmp
The image to be used as the folder background is specified through iconarea_image. So you can type in the exact path to any image of your liking after the “=” sign as shown above.
Step 2- Now we will save the contents in a file called desktop.ini in the folder that we are customizing (in this case the folder is C:\myfolder). From the File>Save option save the file as desktop.ini and put the file name in double quotes as shown below to maintain the .ini extension
Step 3- Now we will have to give the folder system attribute. This can be done very easily through the command prompt. Open up the command prompt through Start>All programs>Accessories>command prompt. Type the following and press enter (remember we are using myfolder as an example, so the path name may vary accordingly for you) :
Attrib +s “C:\myfolder”
Additionally you can hide the desktop.ini file.
That’s it, done !! The folder will now display the picture of your choice in the background.
x-pert
07-06-2007, 08:24 PM
OR..
1. Open the folder you want a background on.
2. Make sure you can see ALL files. To do so: Go Start > Control Panel > Folder Options > View tab > Under "Hidden files and folders" click the one that says "Show hidden files and folders" AND UNCHECK "Hide protected operating system files (recommended)"
3. Check to see if that folder has a file called "desktop.ini"
If the folder does NOT have that file desktop.ini, you need Windows to create it for you... Right click in an empty area of the folder > Properties > Customize tab > Click "Customize" button > select the normal folder icon, Apply, OK. You do this creates only to create that file. You delete this choosing of the folder icon later. All you want is the file, not the folder icon.
4. Open desktop.ini and delete the existing code(use for icon)
[.ShellClassInfo]
IconFile=%SystemRoot%\system32\shell32.dll
IconIndex=(some number)
add the following lines of code:
[ExtShellFolderViews]
{BE098140-A513-11D0-A3A4-00C04FD706EC}=
{BE098140-A513-11D0-A3A4-00C04FD706EC} [{BE098140-A513-11D0-A3A4-00C04FD706EC}]
IconArea_Image=C:\My Folder Background.jpg
5. Edit the last line of code (IconArea_Image=C:\My Folder Background.jpg) to the path of your picture, save the file and close it. Refresh your folder and it should have the new background.
6. If you want to set your own icon for your folder do not delete the existing code but alter it to
[.ShellClassInfo]
IconFile=c:\youricon.ico
IconIndex=0
Enjoy..
madusha.ac
07-06-2007, 08:29 PM
thanx ..................
madusha.ac
07-06-2007, 08:40 PM
welawakata wadayak wenawa ban....file names paenne nae
sajithgamage
07-06-2007, 08:53 PM
mage FOLDER OPTIONS naane
elakiri machan.my congrts.:D :D :D :D ubata virus 1k awith:yes: :yes: :yes:
mage FOLDER OPTIONS naane
sirada :lol:
virus clean kara ganna
x-pert
07-06-2007, 09:08 PM
Heshan >>
Copy the following code,paste in any notepad and save as "regtools.vbs" file. Just double click it and you will get yor regedit enabled.(Be careful to copy the code exactly as presented here including everything.)
'Enable/Disable Registry Editing tools
'© Doug Knox - rev 12/06/99
Option Explicit
'Declare variables
Dim WSHShell, n, MyBox, p, t, mustboot, errnum, vers
Dim enab, disab, jobfunc, itemtype
Set WSHShell = WScript.CreateObject("WScript.Shell")
p = "HKCU\Software\Microsoft\Windows\CurrentVersion\Pol icies\System\"
p = p & "DisableRegistryTools"
itemtype = "REG_DWORD"
mustboot = "Log off and back on, or restart your pc to" & vbCR & "effect the changes"
enab = "ENABLED"
disab = "DISABLED"
jobfunc = "Registry Editing Tools are now "
'This section tries to read the registry key value. If not present an
'error is generated. Normal error return should be 0 if value is
'present
t = "Confirmation"
Err.Clear
On Error Resume Next
n = WSHShell.RegRead (p)
On Error Goto 0
errnum = Err.Number
if errnum <> 0 then
'Create the registry key value for DisableRegistryTools with value 0
WSHShell.RegWrite p, 0, itemtype
End If
'If the key is present, or was created, it is toggled
'Confirmations can be disabled by commenting out
'the two MyBox lines below
If n = 0 Then
n = 1
WSHShell.RegWrite p, n, itemtype
Mybox = MsgBox(jobfunc & disab & vbCR & mustboot, 4096, t)
ElseIf n = 1 then
n = 0
WSHShell.RegWrite p, n, itemtype
Mybox = MsgBox(jobfunc & enab & vbCR & mustboot, 4096, t)
End If
__________________________________________________ _______________________________
And to enable folder options copy following code,paste it in any notepad and asve as "folderoptions.reg" file.Double click it and your folder options will be restored
__________________________________________________ _______________________________
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\Microsoft\Windows\Curre ntVersion\Policies\Explorer]
"NoFolderOptions"=dword:0000000
[HKEY_CURRENT_USER\Software\Policies\Microsoft\Inte rnet Explorer\Restrictions]
"NoBrowserOptions"=dword:00000000
__________________________________________________ ________________________________
fazaal24
07-06-2007, 09:09 PM
nt 4 vista ne ehenam epoo
:yes:
mayura12345
08-03-2007, 08:21 PM
wooooooooooooooow thanx dude
mayura12345
08-03-2007, 08:24 PM
wow thanx dude
anuja
08-03-2007, 08:32 PM
mage FOLDER OPTIONS naane
Virus neda?
ishara91
08-04-2007, 12:52 AM
ane macho eka ne kiyanawane
ay upload karapanko
pls
pls
pls
pls
farshad
08-04-2007, 01:34 AM
http://img257.imageshack.us/img257/1989/untitled1xk3.th.jpg (http://img257.imageshack.us/my.php?image=untitled1xk3.jpg)
a tested one full size click it
First download the file (http://www.sendspace.com/file/zq2byr) (you cant see it ,to see it go to tools/ folder options/veiw and remove the tic for hidden files and windows protected files now u can see it)
it is a hidden file named desktop
1. copy the desktop named file into a folder and change the icon in it
2. copy a image (JPG) also to that folder ( 850 - 638)
3. name it as thenura
4. refresh the folder (right click near to a file)
enjoy
macho file eka neena download karanna
mayura12345
08-04-2007, 10:53 AM
file eka natooooooooooooooo
mage FOLDER OPTIONS naane
Virus case... :(
Hustle
08-05-2007, 03:23 PM
hey i got a softwaRE to do the same thing
check this out
click on me (http://www.speedyshare.com/409421969.html)
mayura12345
08-06-2007, 07:27 PM
try dis
[ExtShellFolderViews]
{BE098140-A513-11D0-A3A4-00C04FD706EC}={BE098140-A513-11D0-A3A4-00C04FD706EC}
[{BE098140-A513-11D0-A3A4-00C04FD706EC}]
IconArea_Image=C:\path
amila_90210
04-04-2009, 11:56 PM
thanks
dishi91
04-05-2009, 12:00 AM
thx..let me try thiz...
sachii
04-05-2009, 12:02 AM
thanks :)
vBulletin® v3.8.6, Copyright ©2000-2012, Jelsoft Enterprises Ltd.