1. create a folder which u want to make invisible.
2. now type in cmd prompt-> "attrib +h +s
(e.g-> "c:\>attrib +h +s c:\abc\xyz")
3. if u want to make it visible type in cmd prompt "attrib -h -s
(e.g-> "c:\>attrib -h -s c:\abc\xyz")
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(e.g. 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(e.g. show.bat)
3.Run it
Jai Shree Raam
No comments:
Post a Comment