Wednesday, August 3, 2011

Hide Folders & Files using DOS Application

Actually DOS is an Operating system... But the same is available in Windows also....
Windows Xp uses 32bit(x86) assembler, so 16 bit instructions is also possible.. But the higher versions of windows uses 64bit(x64) assembler.. So some of the instructions in windows Xp may not in Windows 7.... Here is a simple tutorial that 'll hide your folders and files... This uses a simple DOS instrucitons....

Procedures
----------

1) Open notepad and type the following
2) attrib +s +h /s /d (filename.extension)
3) Save this as hide.bat
4) In a new editor(ctrl+n) type the following
5) attrib -s -h /s /d (filename.extension)
6) Save this as unhide.bat

Now just by double clicking the file hide.bat, we can hide the file specifed....
By double clicking the file unhide.bat, we can unhide that...

No comments:

Post a Comment