How To Hide Your Files In XP - hide doc and folders

Pages: 1, 2
free web hosting

Read Latest Entries..: (Post #18) by iGuest on Aug 6 2008, 02:59 PM. (Line Breaks Removed)
it\\ How To Hide Your Files In XP RonelNov 26 2007, 03:08 PMThis ain't new...Even though the dos way is quite nice!Here is THE simple way!1. Right-click on the file/folder you want to be hidden(shh!)2. Click Properties.3. At the Properties dialog, you will see a entry "Attributes:"(see picture)4. You will see there a checkbox hidden...Click it!5. Click OK or Apply.Easy! Easy, but not th... read more.
Read the FIRST post of this Topic. - Express your Opinion! Contribute Knowledge :-).

Free Web Hosting > Computers & Tech > How-To's and Tutorials > OS > Windows

How To Hide Your Files In XP - hide doc and folders

harriko
In this tutorial i will show ou how to hide your documents or folders, but you have to remember where it is! ok lets go!

pick a file you want to hide from windows XP, to help you i will hide a file "hidden.doc" in "C:"

open command prompt:
START>RUN>CMD

you might find yourself in your user directory. in the command prompt go into the directory of where your file is going to be hidden.

as my "hidden.doc" is in "C:" i will use "cd.." command to "change directory before" till i get into my C: drive

once your there use the attributes command on the file you are hiding. this is what you put into the command prompt.

CODE
attrib +r +a +s +h hidden.doc


replace the hidden.doc with your own file.

hope you find this useful!

Reply

ChronicLoser
...okay, say my file is hidden. Then how do i access it again?

And when you say "hidden", is it the same thing as when you right-click>Properties then check the hidden box? Or is this a different type of file hiding? lol

oops, nevermind. I just tried it, and I have no idea where hidden.doc ran off to, lol. Alright, so how do i access the hidden file?

Reply

miCRoSCoPiC^eaRthLinG
lol.. CHronicLoser.. stop before you kill me.. roflmao.

Anyways, you can use that attrib command over entire directory contents.. So if anyone's ever trying to find out where the hidden files ran off to - if you have any idea about it's containing directory - go in there and do a:

attrib -GetRidOfAllOfThem *.*

naah am just kidding.. doing a attrib -h *.* would suffice

Btw, your files never really get hidden this way - they just fail to show up on a diectory listing with the dir command or in the explorer file view because of their +h or +s attributes. But if you have the Tools > Folder Options > View > Show hidden files and folders in your Windows Explorer turned to ON, all such files become visible immediately. The same can be achieved by using dir /a command in console.

    [/tab]Incidentally since we are taking about dos based attributes, I'd like to mention one little option that can be used with the "dir" command. It goes like:

dir /o:n /p

Cryptic ?? /o: X - means the ORDER in which you want to files to be displayed. X here can be replaced with anything from
n - for name based alphabetical listing
t - listing where files are grouped according to their type
d - to group files according to date of creation
s - to group them by their sizes


[tab]The last /p option tells dir to display the files PAGE-BY-PAGE so they don't just scroll off the screen without you being able to see the list completely.

    If you don't want to specify these options over and over again, everytime you do a dir, then you can include this syntax in your autoexec.bat file.

SET DIRCMD = /o:n /p

As you can see, this will set an environmental variable that the dir command reads while listing files.

All the best smile.gif

 

 

 


Reply

Ryan
the best means of hidding a file in XP is keeping it in My Documents, so which other users, unless an administrator, cannot access. The owner screen name's documents can't even be accesses by other admins, along with I think the administrator account, but thats disabled unless you are in safe mode or no other accouts exist, at least in XP home.

Reply

ChronicLoser
QUOTE(microscopic^earthling @ Feb 16 2005, 12:33 AM)
lol.. CHronicLoser.. stop before you kill me.. roflmao.

Anyways, you can use that attrib command over entire directory contents.. So if anyone's ever trying to find out where the hidden files ran off to - if you have any idea about it's containing directory - go in there and do a:

attrib -GetRidOfAllOfThem *.*

naah am just kidding.. doing a attrib -h *.* would suffice

Btw, your files never really get hidden this way - they just fail to show up on a diectory listing with the dir command or in the explorer file view because of their +h or +s attributes.  But if you have the Tools > Folder Options > View > Show hidden files and folders in your Windows Explorer turned to ON, all such files become visible immediately. The same can be achieved by using dir /a command in console.

    [/tab]Incidentally since we are taking about dos based attributes, I'd like to mention one little option that can be used with the "dir" command. It goes like:

dir /o:n /p

Cryptic ?? /o: X - means the ORDER in which you want to files to be displayed. X here can be replaced with anything from
n - for name based alphabetical listing
t - listing where files are grouped according to their type
d - to group files according to date of creation
s - to group them by their sizes


[tab]The last /p option tells dir to display the files PAGE-BY-PAGE so they don't just scroll off the screen without you being able to see the list completely.

    If you don't want to specify these options over and over again, everytime you do a dir, then you can include this syntax in your autoexec.bat file.

SET DIRCMD = /o:n /p

As you can see, this will set an environmental variable that the dir command reads while listing files.

All the best :)
*



hmm...i dunno. I always keep my "hidden" option on...yet I couldn't see it after typing in "attrib +r +a +s +h hidden.doc". Nevertheless "attrib -r -a -s -h hidden.doc" revealed the file back to me. I dunno. I'm somewhat ignorant when it comes to dos. Oh well.

Oops, i just realized that I'm not using Windows XP... >_<

Reply

abhishek
Why use command promt while windows allows you to hide files by just entering into the file properties box and checking the hidden attrib.
And to restoring can also be done without using command prompt.

Reply

abhiram
Hey, I wrote a tutorial on the same topic not too long ago. There are 2 methods in mine. One of them is this one. Sorry, I didn't know this topic was done before. Here's the post:

http://www.astahost.com/hiding-files-folders-t7128.html

m^e: That's a neat idea, but what do you do about it in winxp? I mean, autoexec.bat is 0 bytes long in mine biggrin.gif. I don't think winxp uses autoexec.bat.

Reply

Jeigh
Hmm, I'll have to play around with that tonight. Not that I have a use for it, but why not? lol

Reply

abhay


QUOTE
attrib +r +a +s +h hidden.doc


We can easily set three attributes out of the above four attributes by simply right clicking on any folder or file. They are simply

+r :Read Only
+a : Archive
+h : hidden

and the fourth one "+s " is for system file attribute.
Any file or folder made hidden with this attribute can be made visible by opening
explorer>tools>folder options>view
and then by unchecking on the check box 'Hide Protected Operating System Files' and by showing hidden files simultaneously.

Reply

joe.k
ooooooh... nice smile.gif
i havent tried it yet but i preffer no to.
it more easier to hide them from properties page smile.gif
guess what the hell i am gona use this option for anyway smile.gif smile.gif
and i am kinda a newbie in CMD command laugh.gif

Reply

Latest Entries

iGuest
it\\
How To Hide Your Files In XP

RonelNov 26 2007, 03:08 PM
This ain't new...Even though the dos way is quite nice!

Here is THE simple way!

1. Right-click on the file/folder you want to be hidden(shh!)
2. Click Properties.
3. At the Properties dialog, you will see a entry "Attributes:"(see picture)
4. You will see there a checkbox hidden...Click it!
5. Click OK or Apply.

Easy!



Easy, but not the same effect... If in folder options there is checked the option to view hidden files you;ll can see it... By the first case it's not possible


-reply by Yoan

Reply

iGuest
see hide folder in doc command
How To Hide Your Files In XP

Sir
I am working in windows 2003 server

-reply by vinit

Reply

ethergeek
There's another post like this around somewhere that I've said the same thing on: hiding files is pointless!

If you're the computer's only administrative user, just change the permissions on the file or the directory its in. If there are other admin users, just install something like TrueCrypt to stash your private files in. If you don't have admin on the computer, just keep your private files on a thumb drive.

Or better yet, keep a copy of GPG and your keyrings on a thumb drive and just encrypt your files when you aren't using them. The same effect can be achieved by a password-protected 7-zip or RAR file.

Simply hiding files just doesn't work...this was great to keep your files safe from your kids back in the DOS days...but in modern times...no. If your privacy is at all important, put a little more effort into maintaining it.

Reply

iGuest
how to hide a file in c
How To Hide Your Files In XP

Replying to harriko

Sir according to your kind suggestion I used the same syntax but when I again edit the file the file opened,but I want to hide.Please suggest me.

-reply by sudhansu sekhar sahoo

Reply

Ronel
this ain't new...even though the dos way is quite nice!

Here is THE simple way!

1. Right-click on the file/folder you want to be hidden(shh!)
2. Click Properties.
3. At the Properties dialog, you will see a entry "Attributes:"(see picture)
4. You will see there a checkbox hidden....click it!
5. Click OK or Apply.

Easy!

Reply


Got an Opinion! Express your Views! (no registration):-
Add your Reply/ Opinion/ Views/ Comments/ Suggestion/ Questions/ Queries etc.
Posts with decent grammar & English will be accepted and please refrain from profanities.
For asking a Question, We recommend you to sign-up (for free) so that you can track the topic easily.

Nature of your Post*: Opinion/ Reply/ Comments
Question/Query
Feedback to us.
       
Name   Email
Title/Question*

(Maximum characters: 10,000)
You have characters left.
Confirm Code:

Pages: 1, 2
Recent Queries:-
  1. hide your files using dos - 3.06 hr back. (1)
  2. hide files in cmd - 4.19 hr back. (1)
  3. how to completely hide a folder in xp - 6.11 hr back. (1)
  4. folder option not hide but show all file hide in xp help me - 8.05 hr back. (1)
  5. how to see hidden files regedit xp - 8.32 hr back. (1)
  6. how to change hide attribute in command prompt - 8.89 hr back. (1)
  7. hiding folders in xp home - 10.47 hr back. (1)
  8. how to hide a data or file using commands in xp - 12.90 hr back. (1)
  9. hiding files in xp - 15.08 hr back. (1)
  10. hide file xp - 20.41 hr back. (1)
  11. how do i hide files on xp? - 20.47 hr back. (1)
  12. how to hide a folder on xp - 23.29 hr back. (1)
  13. hide run file in winxp - 26.48 hr back. (1)
Similar Topics

Keywords : hide, files, xp, hide, doc, folders

  1. Registry Configuration Files And The Corruption Problem
    My first tutorial (0)
  2. Hide Your Performed Actions
    (2)
    Hide your performed actions or files from other users ! If you have Windows ( XP,ME,2000,98)
    1) Run regedit 2) Find following Address :
    HEKY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\E
    xplorer 3) create new Binary Value and name it "NoRecentDocsHistory" 4) Double click on key and
    give 01 00 00 00 value 5) Finally close Regedit and restart your pc Be successful Soleimanian
    /cool.gif' border='0' style='vertical-align:middle' alt='cool.gif' /> ....
  3. [xp] Hide Accounts
    (0)
    Many of you probably use the welcome screen in XP so you don't have to enter a username, you
    just click, but this list all users on the computer and you may not want all listed, in this case
    you can make a registry edit to hide the account from the welcome screen. IMPORTANT: THIS REQUIRES
    YOU TO EDIT THE REGISTRY, IF YOU DO NOT FOLLOW THESE INSTRUCTIONS CAREFULLY YOU COULD MESS UP YOUR
    COMPUTER, IN SOME CASES A REGISTRY BACKUP MAY WORK, IF YOU CAN USE IT, SEARCH GOOLGLE FOR REGISTRY
    BACKUP TO FIND OUT HOW TO DO THIS 1. Goto this key in the registry, to get to the....

    1. Looking for hide, files, xp, hide, doc, folders

Searching Video's for hide, files, xp, hide, doc, folders
advertisement




How To Hide Your Files In XP - hide doc and folders



 

 

 

 

ADD REPLY / Got an Opinion! a humble request :-) RAPID SEARCH! Free Hosting [X]
Express your Opinions, Thoughts or Contribute more info. to help others.
Ask your Doubts & Queries to get answers, So that "Together We can help others!"
Register FREE for AD-FREE forum, Create your own topics, Ask Questions, track topics, setup subscriptions & notifications and Get a Free Website w/ Email and FTP.
500MB Space *No Ads*, CPanel, FTP, PHP, MySQL, EMails - 100% FREE