|
Hide Folders ( as a System File ) -
07-23-2007, 10:52 AM
Hi,
Hey if you wanna hide something as a System File then here's how....
go to the command prompt ( Start ------> Run -----------> Cmd )
then type attrib +s +h c:\wannahidethis
+s --------> hide file or folder as System File ( You can't uncheck the hidden in properties but you can use the same command prompt code to unhide ( see bottom) )
+h----------> to make file hidden
+r ---------> to make the file read only
Systex is like this
ATTRIB [+R] [+H] [+S] [Drive] : [Path] [File Name]
------------------------------------------------------------------------------------------------
to get it back i mean the hidden thing to shown
Attrib -s -h c:\path
+ will add the attribute and the - will remove them
enjoy
|