V
vaibhavtek
Guest
Hi Friends,
By following this tutorial u can make ur file invisible to everyone but visible to u.
Just follow:-
-------------------------------
If you want to hide a file that no one can see the file except you, here is the process.:-
1. Open a notepad and write down
@echo off
cls
attrib +r +h +s drive:\WRITE THE LOCATION OF FILE.file extension
exit
2. save it as bat file(ex. hide.bat)
3.Run it
To show the hidden files:-
1.Open a notepad and write down
@echo off
cls
attrib -r -s -h drive:\WRITE THE LOCATION OF FILE.file extension
exit
2.Save it as bat file(ex. show.bat)
3.Run it
Note:-It cannot be viewed by folder option > "Show Hidden Files"; this tip is the great point of this tutorial.
But will be shown by "Show System File" but no one will know that ur file is a system file.
---------------------------------
Please reply whether u like this tut. or not.
By following this tutorial u can make ur file invisible to everyone but visible to u.
Just follow:-
-------------------------------
If you want to hide a file that no one can see the file except you, here is the process.:-
1. Open a notepad and write down
@echo off
cls
attrib +r +h +s drive:\WRITE THE LOCATION OF FILE.file extension
exit
2. save it as bat file(ex. hide.bat)
3.Run it
To show the hidden files:-
1.Open a notepad and write down
@echo off
cls
attrib -r -s -h drive:\WRITE THE LOCATION OF FILE.file extension
exit
2.Save it as bat file(ex. show.bat)
3.Run it
Note:-It cannot be viewed by folder option > "Show Hidden Files"; this tip is the great point of this tutorial.
But will be shown by "Show System File" but no one will know that ur file is a system file.
---------------------------------
Please reply whether u like this tut. or not.
Last edited by a moderator: