Sunday, 23 June 2013

How to create Undeletable files & folders?

It happens to many of us frequently.. You have hundreds of files and documents which are very important for you in that folder, and one day you find that some one has deleted that folder either by mistake or to make you fall in trouble. If you want to overcome this problem, you need to create a folder which is undeletable and files too. Do we have such options? Yes, we do have. This trick for 92% of Netizens, you know what I mean... It's for Windows OS users :) 


Know How...!!!
-->Here are the steps how to create undeletable and unrenamable folder...
1. Open Command Prompt, by typing "cmd" on run command line.
2. Now, if you want E:/ as the destination, just type E: and press enter.
3. Now type the command md\aux\\ and press enter.

 And that's it...You get a folder named aux in E:/...
Try to delete and you get the error below:
Now Windows will create an undeletable, unrenamable folder in the drive you entered in step 2. Quite easy to create .Isn't it?

How did this happen? What's secret behind this?
Let me reveal: The basic concept behind this trick is the use of Keywords. Keywords are reserved words in any programming language that cannot be used as names of variables. Windows also uses certain keywords in its programming. Some of them are con, aux, lpt1, lpt2, lpt3, lpt4, lpt5, lpt6, lpt7, lpt8 and lpt9.

-->How to delete the undeletable folder?
Now, here is the process.
1. Open command prompt and go to the drive where the folder is available.
2. Now, type rd\aux\\ and then press enter. That's it.
Your undeletable folder is deleted... :)

Note: Folder cannot be deleted or renamed, but files in it can be deleted, leaving it empty by using the above trick.

-->How to, if you need to create undeletable and undetectable files too?
Check out this simple method to make it happen:

1. Go to command prompt.

2. Go to the drive or folder where you have folders or files which you want to make undetectable , undeletable , etc.
3. Now in command prompt type:
attrib
and add the following code to it. You can use these codes together or just with single.
+s : This variable makes the “Attribute” of a file into a system file
+h : This variable makes the “Attribute” of a file hidden
+a : This variable makes the “Attribute” of a file archived

For example, you want to make a file CSE.txt undeletable, then type attrib +s CSE.txt and press enter. This makes CSE.txt undeletable. If you want it hidden, add +h along with above attrib command and press enter.

That's it...!!! Your file becomes undeletable, hidden or archived as you like...

-->Again, what if you want to delete?
If you want to make it deletable and detectable again, just type the codes with "-" in them for all the "+" u have given.i.e attrib -s -h CSE.txt 
You can open the file without deleting their attributes by typing their location in the address bar. Like mine undeletable file location is E:\aux\CSE.txt. Just type it in address bar and CSE.txt will open up even if it is undetectable.

You are unbeatable now, with your files and folders secured...Keep smiling. 
Have a nice day :)

No comments:

Post a Comment