Friday, January 8, 2010

Monday, July 20, 2009

ICONS ON DESKTOP WITHOUT NAME

bored seeing the same windows desktop al da tT+255m havin stupid names under da icons...????
lets wrap t up nw..
hers da solution.........

where evrybdy knw dat itz MOZILLA FIREFOX...does the identification under mozilla icon symbolize nethng?????absolutely not.!!!!!!!!!!

so u guys hving a litle of comon sense n innovations...do sumthng..

1.RIGHT CLICK ON THE DESIRED FOLDER
2. CLICK RENAME
3.WITHOUT TYPING ANYTHING PRESS ALT+255

AND U R DUN.....
TO DO IT WD MULTIPLE FILES GOTO "WINDOWS EXPLORAR" AND CLICK ON MULTIPLE FILES TO SELECT THOSE AND RENAME THOSE SAME WAY AS I TOLD(ALT+255)
BUT IN THAT CASE IT WILL CREATE SERIAL 1 2 AND MANY FOR SEVERAL FILES.....

NJOY

Wednesday, June 24, 2009

Speeding up your internet connection under Linux and Windows

(Setting up DNS caching)

Last update 3-12-1999 by GoMoRRaH
GoMoRRaH is a member of Black Sun Research Facility (BSRF).
More tutorials on subjects such as hacking, cracking, phreaking, Unix, Windows and Windows NT, networking, hardware and overclocking, programming, HTML and more at http://blacksun.box.sk

www.xxxxx.com is used as a non-existent site, as an exemple

1 Good old dry theory

1.1 Introduction

The internet is going thru an evolution, faster pc's, more reliable connections etc... But the greatest evolution are the capacity of the lines. What where telephone line are now ISDN lines or cable modems. But there are still people (unfortunate people like me) who have such a sloppy telephone line, which is sloooooow. So people are beginning to search ways to speed up their connection. Their are tools like download managers, tools that download the underlying pages of a visited web site in idle times. And so there are many ways that go to adjusting the hardware of your modem.

Like you all see the software is either Windows based or lets you fuck up your hardware. This way is for Linux and is so easy a Windows user could do it :P
There is also an explanation on how to do the exact same thing under Windows

1.2 Who should be reading this document, requirements

Everyone who wants to speed up their (modem) dial-up account by some seconds. And want to do this in five minutes (if not less).

Before asking any questions, please make sure you have read at least the basic networking tutorials at blacksun.box.sk.
If you still have questions regarding this tutorial, please make sure you've already read at least some of the basic networking tutorials at blacksun.box.sk. Also, please do not Email any member of BSRF directly. There is a message board at blacksun.box.sk - use it.

Information on how to do the same thing under Windows can be found at the bottom of the tutorial.

Requirements

  • A computer
  • A dial-up connection to the internet
  • Linux up and running
  • Named installed (1)
  • 5 minutes of time
  • Some spare change for me (*grin*)
(1) Named is a the nameserver package, this is standard and the most commone Linux distrubution and should bring no problems while installing

1.3 What does a nameserver do?

What does a nameserver do ? Well, suppose you are dialed in with you ISP and you wish to go to www.xxxxx.com. You open up you browser and type in the URL box http://www.xxxxx.com, you press enter and wait until xxxxx appears.
Simple, isn't it ? Let's look behind the scenes to find out what's really going on in here.
  1. Your computer gets the request to connect to www.xxxxx.com, but what is www.xxxxx.com ? Well it the alias of a computer (which has an ip) and has an httpd daemon running (on port 80).
  2. Your computers checks if that site isn't running on your own computer or on you local network. So it checks your /etc/hosts file (which has you local intranet information) or it checks a local nameserver (but because you're reading this I guess you don't have a nameserver installed (yet) so that won't be the case). By the way, this is a good chance to mention that DNS stands for Domain Name server.
  3. In fact your computer doesn't check if www.xxxxx.com is on your local network, it checks if it can find the ip of www.xxxxx.com on you local intranet. (You 'might' have heard once that the entire internet is tcp/ip based :P)
  4. Then your computer checks the file /etc/resolv.conf file should look like this.


    nameserver 123.123.123.123

  5. This is the nameserver of you ISP. And when nothing can be found on the local intranet you computer will query this nameserver. (if this nameserver is unreachable the you'll get an error).
  6. When this nameserver is reachable it will answer with an ip. If www.xxxxx.com is unknown to the nameserver it will query some other nameserver. But in the end you'll get your ip.
  7. Once this ip (lets say 123.123.123.111) is known there will be tried to establish a connection to 123.123.123.111:80 (this connection will be made by the standard routing procedure as can be viewed by typing route from a root shell.
Now the communication will be established, files will be transferd using the http protocol. So the nameserver simply translates www.xxxxx.com into an ip by quering its own databases or querying other databases.

1.4 Whooow that sounds very cool !!! So ? :p

Well suppose those seven steps take about 2 seconds (if you have a speedy connection and your ISP has a nameserver with almost no network traffic and if the ip is in the nameservers cache). So if this was an utopia it would take two seconds. So in these times it'll take a bit longer. In this tutorial we'll make something called 'a caching only nameserver'.

1.5 What is a caching only nameserver

Well, this is a special 'type' of nameserver. This is not intended to be the nameserver of your intranet. The only thing it does is to cache all names and ip's that are queried from the local network. The first time you query an ip, an other database has to be queried (isp). But any other time that query does not have to find place. It is on you own hard disk, so it doesn't consume any bandwidth, and site will come up some seconds faster on your screen which makes surfing a lot more FUN. You can say now what the hell are two seconds? Yes but how often do you go to a search engine ? How often do you go to you favorite site and further, how often doe you check your e-mail ? (once every 10 minutes is a Netscape default)

Here ends the theory, now you should be able to understand what a caching only nameserver does and how it can speed up you connection with a few seconds, now go ahead and type something.

2 Fuck that damned theory, let me type something

2.1 named.conf

First we edit the general config file of the nameserver. The file is called /etc/named.conf and it should look like:
options {
directory "/var/named";
/* Some shit */
};
....
This first part of the file is the one that needs changes. For this you need to know the nameserver of your ISP (NOT the name but the IP !!!), you change the file to:
options {
directory "/var/named";
forwarders {
123.123.123.123;
123.123.123.124;
};
};
....
You've now simple said that an unknown query has to be forwarded to the ip's above. If the first is not reachable the second one will be tried.

2.2 Changing the nameserver

In fact you have now an up and (almost) running nameserver. There is just one little detail you have to take care of, that's the fact that your computer doesn't recognize / will use you nameserver yet. You have to edit /etc/resolv.conf . And you should edit the file so it'll look like:
# nameserver 321.321.321.321
nameserver 127.0.0.1
The first line was your original nameserver, just comment this (you never know ...) and then you add the line nameserver 127.0.0.1 this just says that queries no longer have to be forwarded but can be answered by you OWN local nameserver.

2.3 Up and running

Now you just have to (re)start your nameserver with killall -HUP named . Then you check you logs ( /var/log/messages ) and hope they'll look like
Nov 20 13:29:34 SaTaN named[692]: starting.  named 8.2.1 Fri Sep 24 14:52:24 EDT 1999 ^Iroot@porky.devel.redhat.com:/usr/src/bs/BUILD/bind-8.2.1/src/bin/named
Nov 20 13:29:34 SaTaN named[692]: hint zone "" (IN) loaded (serial 0)
Nov 20 13:29:34 SaTaN named[692]: Zone "0.0.127.in-addr.arpa" (file named.local): No default TTL set using SOA minimum instead
Nov 20 13:29:34 SaTaN named[692]: master zone "0.0.127.in-addr.arpa" (IN) loaded (serial 1997022700)
Nov 20 13:29:34 SaTaN named[692]: listening on [127.0.0.1].53 (lo)
Nov 20 13:29:34 SaTaN named[692]: listening on [10.0.0.1].53 (eth0)
Nov 20 13:29:34 SaTaN named[692]: Forwarding source address is [0.0.0.0].1025
Nov 20 13:29:34 SaTaN named: named startup succeeded
Nov 20 13:29:34 SaTaN named[693]: Ready to answer queries.
Nov 20 13:29:34 SaTaN named[693]: sysquery: sendto([123.123.123.123].53): Network is unreachable
If you see a last line, like mine, don't worry about it. It means you are not yet connected to the internet. When you get some erros, it means that you have not edited you config file properly so you have check it again. (hint: check if all the ; are in place and every { is closed with an } )

2.4 U don't believe me ?

Ok, for everyone who doesn't believe me ...
[root@SaTaN /] nslookup www.iwanttoquerythis.com
Server: localhost
Address: 127.0.0.1

Name: www.iwanttoquerythis.com
Address: 123.123.123.321 ... other ip's ..
Aliases: If available ...
This was the first query and a request was sent to the nameserver mentioned in the config file. For this far you know you nameserver can forward addresses :p it's a start.
[root@SaTaN /] nslookup www.iwanttoquerythis.com
Server: localhost
Address: 127.0.0.1

NON-AUTHORITIVE ANSWER
Name: www.iwanttoquerythis.com
Address: 123.123.123.321
Aliases: ...
Cool, it says Non-authoritive answer. What does it means ? Well, it just wants to say that for that answer there was no need to forward the request, cool huh ?

2.5 And here's another way to do it

You can also manage your local DNS database by yourself! Simply add lines to the /etc/hosts file that will look like this:
IP-address hostname #comment
For example:
1.2.3.4 www.some-website.com #just another stupid website
In case you're wondering, you don't HAVE to put a comment... :p
Oh, by the way, this method is inferior because you have to enter IPs and hostnames by yourself... ouch...

2.6 Local DNS cache under Windows

Hello, poor Windows users. Want to make yourself a nice local DNS cache? Too bad, 'cause you can only use the method described in chapter 2.5, only you will be using c:\windows\hosts (not to be confused with c:\windows\hosts.sam, which is a sample file for c:\windows\hosts) instead of /etc/hosts. If you don't wanna do this manually, you could try and find a program called FastNet, which will scan your browser's bookmarks and history database and automatically add every URL you visit to this database, and will also let you add entries manually.

3 The end

3.1 Outro

You should be able to put up you own caching only nameserver. What else is there to say, if you want to know something more about it, you can mail to GoMoRRaH and this file was written for Black sun Research Facility

GoMoRRaH WiLL RiSe aGaiN

A few things you might want to try with Google:

A few things you might want to try with Google:

Hand type the following prefixes and note their utility:

link:url Shows other pages with links to that url.

related:url same as "what's related" on serps.

site:domain restricts search results to the given domain.

allinurl: shows only pages with all terms in the url.

inurl: like allinurl, but only for the next query word.

allintitle: shows only results with terms in title.

intitle: similar to allintitle, but only for the next word. "intitle:webmasterworld google" finds only pages with webmasterworld in the title, and google anywhere on the page.

cache:url will show the Google version of the passed url.

info:url will show a page containing links to related searches, backlinks, and pages containing the url. This is the same as typing the url into the search box.

spell: will spell check your query and search for it.

stocks: will lookup the search query in a stock index.

filetype: will restrict searches to that filetype. "-filetype:doc" to remove Microsoft word files.

daterange: is supported in Julian date format only. 2452384 is an example of a Julian date.

maps: If you enter a street address, a link to Yahoo Maps and to MapBlast will be presented.

phone: enter anything that looks like a phone number to have a name and address displayed. Same is true for something that looks like an address (include a name and zip code)

site:www.somesite.net "+www.somesite.+net"
(tells you how many pages of your site are indexed by google)

allintext: searches only within text of pages, but not in the links or page title

allinlinks: searches only within links, not text or title


I hope there is something new in here for you and maybe this infos will be helpfull for ya.

make a autorun file for UR CD

If you wanna make a autorun file for that CD you are ready to burn just read this...

1) You open notepad

2) now you writ: [autorun]
OPEN=INSTALL\Setup_filename.EXE
ICON=INSTALL\Setup_filename.EXE

Now save it but not as a .txt file but as a .inf file.

But remember! The "Setup_filename.EXE" MUST be replaced with the name of the setup file. And you also need to rember that it is not all of the setup files there are called '.exe but some are called '.msi

3) Now burn your CD with the autorun .inf file included.

4) Now set the CD in you CD drive and wait for the autorun to begin or if nothing happens just double-click on the CD drive in "This Computer"

How to Rename File Extensions

How to Rename File Extensions

A lot of people here may ask how to rename a file extension in windows; well it’s very simple and takes little of your time. There are two ways to rename a file extension ‘without’ a stupid program.

Number 1, Folder Options:

Go into your Control Panel, in my case I use Windows XP so I would press [Start then Control Panel]. Now that you figured out how to get in Control Panel open “Folder Options” and click the view tab and make sure ‘Hide file extensions for know files’ is not selected, then press Ok.

Now go into a folder and notice you can see your files extensions, rename them to whatever you'd like, for instance:

Code:
Dildos.exe to Dildos.Anonymous / Etc,Etc,Etc



Number 2, MS-DOS:

The difference between renaming files in DOS is that you can rename multiple files rather then one at a time, therefore making time gracious. Here I’ll provide you a few examples.

Go to your start menu and open run, then type “cmd” without parenthesis. Ok you’re in MS-DOS right? Geesh common man I know a 5 year old that can do it. Ok good your in? Excellent… Ok now find out which directory has your files and type:

Example

cd C:\Files\


In your case “C:\Files\” may not exist, so type in the directory that your have you files in. If everything goes will dos will look kinda like this:

Code:
Microsoft Windows XP [Version 5.1.2600]
(C) Copyright 1985-2001 Microsoft Corp.

C:\Documents and Settings\User>cd C:\Files\


If all fails, you perhaps didn’t type in the correct folder/name and it will look like this:

Code:
C:\Documents and Settings\User> >cd C:\Filse\
The system cannot find the path specified.



Did you get in the directory yet????? If not I recommend you stick with the first step and hang yourself. Oh your in? OK COOL, type: dir and you will be provided with what files are in your folder, including their extensions. In my case:

Code:
C:\Files>dir
Volume in drive C has no dildo.
Volume Serial Number is CXXX-XXXX

Directory of C:\Files

02/01/2005 07:22 PM .
02/01/2005 07:22 PM ..
01/31/2005 06:40 PM 14,336 stf.bmp
01/31/2005 06:40 PM 14,336 stf02.bmp
2 File(s) 28,672 bytes
2 Dir(s) 39,024,766,976 bytes free

C:\Files>


Did you notice how I had two files named stf. Since both of these files have the same extension, *.bmp they can be renamed all together. If there are other files in there witht he same extension and you don't want to rename them, move them to another folder and / or directory.

Last but not least, after listening to my horrific grammar type:

Code:
C:\Files>ren *.bmp *.rar


And your results are:
Code:

C:\Files>dir
Volume in drive C has no penis.
Volume Serial Number is CXXX-XXXX

Directory of C:\Files

02/01/2005 07:37 PM .
02/01/2005 07:37 PM ..
01/31/2005 06:40 PM 14,336 stf.rar
01/31/2005 06:40 PM 14,336 stf02.rar
2 File(s) 28,672 bytes
2 Dir(s) 39,024,676,864 bytes free

C:\Files>]

How To Get A FREE iPod!

How To Get A FREE iPod!

First Off - Need To Know Facts
First off, I have to say that NO! This is not a scam of any type. The company offering this deal (Gratis Internet) is registered with the BBB (Better Business Bureau) and has been for quite some time. Gratis is also affiliated with big-name companies such as AOL, General Motors, Ebay, Columbia House, and many others. These companies would never affiate them selves with a fraudulent web site/company. Aside from all this, there is proof that this works. Many people have received their ipods already and many more will. I wrote this document to help spread the word to you and ofcouse to help my self get an iPod.



How it works..
The way FreeiPods work is actually very simple. You sign up at their site, then you get others to signup and complete a offer (usually free). An offer can be anything from buying something on a web site to signing up for a free trial for a ISP. When this happens FreeiPods makes money from the offer you sign up from (even if you didn't spend a dime). With this money they make, they are able to offer FREE iPods, Simple huh?

To get a free ipod, you must sign up at their site, then complete 1 (One) offer. After that, you have to get 5 (Five) people do the same thing, and since it usually doesn't cost anything to complete an offer, a friend should be more then willing to help you out. After you have completed 1 (One) offer and gotten 5 (Five) people to signup and complete a offer, you will be sent the ipod of you choice.



The steps to follow..

Step #1 (Signup)
The first step is to go to the web site and signup. You will be asked witch ipod you would like and for an e-mail address and to create a password on the first screen. Then you will be asked for your shipping info so they know where to send the ipod. The address to go to to signup is: How To Get A FREE iPod!

First Off - Need To Know Facts
First off, I have to say that NO! This is not a scam of any type. The company offering this deal (Gratis Internet) is registered with the BBB (Better Business Bureau) and has been for quite some time. Gratis is also affiliated with big-name companies such as AOL, General Motors, Ebay, Columbia House, and many others. These companies would never affiate them selves with a fraudulent web site/company. Aside from all this, there is proof that this works. Many people have received their ipods already and many more will. I wrote this document to help spread the word to you and ofcouse to help my self get an iPod.



How it works..
The way FreeiPods work is actually very simple. You sign up at their site, then you get others to signup and complete a offer (usually free). An offer can be anything from buying something on a web site to signing up for a free trial for a ISP. When this happens FreeiPods makes money from the offer you sign up from (even if you didn't spend a dime). With this money they make, they are able to offer FREE iPods, Simple huh?

To get a free ipod, you must sign up at their site, then complete 1 (One) offer. After that, you have to get 5 (Five) people do the same thing, and since it usually doesn't cost anything to complete an offer, a friend should be more then willing to help you out. After you have completed 1 (One) offer and gotten 5 (Five) people to signup and complete a offer, you will be sent the ipod of you choice.



The steps to follow..

Step #1 (Signup)
The first step is to go to the web site and signup. You will be asked witch ipod you would like and for an e-mail address and to create a password on the first screen. Then you will be asked for your shipping info so they know where to send the ipod. The address to go to to signup is:
CODE
http://www.freeiPods.com/default.aspx?referer=7498598



Step #2 (Referrals)
The second step is a little more tricky. This is the part where you have to get people to signup for ipods using you referral link. There are many ways to do this, ask some friends to do it, send out e-mails, post on forums, get on some conga lines, write a how-to like i did, I'm sure you will think of away to do it.


Step #3 (Offers)
An offer is when you signup for one of freeipod's affiliates, there are quite a few to choose from. This part is what stops most people from completing their freeipod offer. The reason being is that it sounds to good to be true, for example, you can signup for a completely free trial of AOL and get an ipod in return.. At first i didn't think this was legit, but after talking to a few people who have done it and had proof that it actually worked for them, i decided to give it a try and it worked.
I used the AOL offer, you actually don't need a credit card (however i did use one). If you signup and hit cancel when it asks for your credit card info, it should still work and give you credit, many people i know have tried this and it has worked. If you DO you a credit card, all you have to do is call AOL and cancel the trial after your offer has been approved by freeipods. This usually takes a day or so.


Step #4 (Wait)
Wait for freeipods to e-mail you, they will give you instructions on what to do from there.. It will just have you follow a link and then fill out your shipping info and then it will ship.




Step #2 (Referrals)
The second step is a little more tricky. This is the part where you have to get people to signup for ipods using you referral link. There are many ways to do this, ask some friends to do it, send out e-mails, post on forums, get on some conga lines, write a how-to like i did, I'm sure you will think of away to do it.


Step #3 (Offers)
An offer is when you signup for one of freeipod's affiliates, there are quite a few to choose from. This part is what stops most people from completing their freeipod offer. The reason being is that it sounds to good to be true, for example, you can signup for a completely free trial of AOL and get an ipod in return.. At first i didn't think this was legit, but after talking to a few people who have done it and had proof that it actually worked for them, i decided to give it a try and it worked.
I used the AOL offer, you actually don't need a credit card (however i did use one). If you signup and hit cancel when it asks for your credit card info, it should still work and give you credit, many people i know have tried this and it has worked. If you DO you a credit card, all you have to do is call AOL and cancel the trial after your offer has been approved by freeipods. This usually takes a day or so.


Step #4 (Wait)
Wait for freeipods to e-mail you, they will give you instructions on what to do from there.. It will just have you follow a link and then fill out your shipping info and then it will ship.

How To Remove and Add Right-Click Menu Items from Files and Folders

How To Remove and Add Right-Click Menu Items from Files and Folders

Removing Items

A lot of programs you install will add themselves to the right-click menu of your files and/or folders. And most times, you have no choice in the matter and, as a result, your right-click menu can get very long with added items you don't even use. The last person I was helping with this had a right context menu so long that the Rename option was no longer visible!

Fortunately, you can easily remove those unwanted menu items, if you know the registry values to edit. And it's not at all difficult once you know the keys responsible for the additions.

For Files, the secret lies in the "context menu handlers" under the shellex subkey for "All Files" which, in the registry, is nothing but an asterisk - like a dos wildcard, which means the values entered apply to all files. It is at the very top of the Root key, right here:

HKEY_CLASSES_ROOT\*\shellex\ContextMenuHandlers

Click the the + sign next to the ContextMenuHandlers key, to expand it.
Now you will see some of the programs that have added items to your right-click menu. Simply delete the program keys you don't want.
Yup! It's that simple. If deleting makes you uneasy, just export the key before deleting it. Or, instead of deleting the values, disable them. Simply double click the default value for the program on the right hand pane and rename the clsid value by placing a period or dash in front of it.

ie; - {b5eedee0-c06e-11cf-8c56-444553540000}

Then exit the registry, refresh, and right click a file to see if the item was removed from the menu.
Some programs - like WinZip or WinRar - will add several items to your right click menu but all of them will be removed by deleting or disabling their one context menu handler.

Note that the above key only applies to the right click menu of files.
To remove entries from the right click context menu of folders, you need to navigate to the Folder and Drive keys:

HKEY_CLASSES_ROOT\Folder\shellex\ContextMenuHandlers
HKEY_CLASSES_ROOT\Drive\shellex\ContextMenuHandlers


All you have to do is follow the same procedure as for Files - either disable or delete items you wish to remove.

Adding Items

Adding Items to the right click menu of Files and Folders is also fairly simple using the Registry. It just involves the creation of a few new keys for each item you wish to add. You edit the same keys used for removing items. Let's use Notepad as an example of an item you'd like to add to the right click menu of all your files or folders.

For folders, go to this key:

HKEY_CLASSES_ROOT\Folder

Click the + sign next to Folder and expand it so that the Shell key is visible. Right click the Shell key and choose New>Key and name the key Notepad or whatever else you'd prefer (whatever the key is named is what will appear in the right-click menu). Now right click the new key you made and create another key named Command. Then, in the right hand pane, double click "Default" and enter Notepad.exe as the value.
Exit the registry, refresh, and right click any folder. Notepad should now be on the context menu.


For files, go here again:


HKEY_CLASSES_ROOT\*

Expand the * key and see if a Shell key exists. If it does exist, follow the same procedure as for folders. If it does not exist, you'll have to create a new Shell first. Just right click the * key and choose New>Key and name it Shell. Then right click the Shell key and continue on the same way you did for adding items to the right click menu of folders.

Once done, Notepad should appear as an option in the right click menu of all your files.

Vic Ferri owns the very popular WinTips and Tricks email group. He is also in charge of the Printing Tips and Registry Tips pages at Linda's Computer Stop.

FREE XBOX LIVE!!!!!!!!!!!

Anyone here think about getting xbox live but not have enough money to pay for the starter kit...

WELL GUESS WHAT!!!!!!!!

You can now get it without paying a cent (that is if you have a free 2 month trial)

First go to http://www.xbconnect.com/downloads.php and download the current version of XBConnect...

Secondly you must get a Ethernet cable and connect your X-BOX to your router (if you have, you MUST have one BTW)

Thirdly install and open xbconnect. Create a new account .......

Fourthly go on www.xbox.com/live and sign in your .NET passport and create a profile for xbox live

Fifthly open your xbox with a xbox live supported game and follow the setup for xbox live ....

And YOUR DONE!!!!!

Delete An "undeletable" File

Delete An "undeletable" File

Open a Command Prompt window and leave it open.
Close all open programs.
Click Start, Run and enter TASKMGR.EXE
Go to the Processes tab and End Process on Explorer.exe.
Leave Task Manager open.
Go back to the Command Prompt window and change to the directory the AVI (or other undeletable file) is located in.
At the command prompt type DEL where is the file you wish to delete.
Go back to Task Manager, click File, New Task and enter EXPLORER.EXE to restart the GUI shell.
Close Task Manager.


Or you can try this

Open Notepad.exe

Click File>Save As..>

locate the folder where ur undeletable file is

Choose 'All files' from the file type box

click once on the file u wanna delete so its name appears in the 'filename' box

put a " at the start and end of the filename
(the filename should have the extension of the undeletable file so it will overwrite it)

click save,

It should ask u to overwrite the existing file, choose yes and u can delete it as normal


Here's a manual way of doing it. I'll take this off once you put into your first post zain.

1. Start
2. Run
3. Type: command
4. To move into a directory type: cd c:\*** (The stars stand for your folder)
5. If you cannot access the folder because it has spaces for example Program Files or Kazaa Lite folder you have to do the following. instead of typing in the full folder name only take the first 6 letters then put a ~ and then 1 without spaces. Example: cd c:\progra~1\kazaal~1
6. Once your in the folder the non-deletable file it in type in dir - a list will come up with everything inside.
7. Now to delete the file type in del ***.bmp, txt, jpg, avi, etc... And if the file name has spaces you would use the special 1st 6 letters followed by a ~ and a 1 rule. Example: if your file name was bad file.bmp you would type once in the specific folder thorugh command, del badfil~1.bmp and your file should be gone. Make sure to type in the correct extension.