"Hidden" is a file attribute; this is information about the file that shouldn't change when you reinstall the operating system.
The attrib command is a Recovery Console command used to change the file attributes for a file or directory while in Recovery Console. An attrib command is also available from the Command Prompt. attrib [+r|-r] [+s|-s] [+h|-h] [+c|-c] [filename] +r = This assigns the read-only file attribute to the file or directory. -r = This removes the read-only attribute. +s = This assigns the system file attribute to the file or directory. -s = This removes the system attribute. +h = This assigns the hidden file attribute to the file or directory. -h = This removes the hidden attribute. +c = This assigns the compressed file attribute to the file or directory. -c = This removes the compressed attribute. filename = This is the file or directory that you are wanting to change the attributes of.
The attrib command is a Recovery Console command used to change the file attributes for a file or directory while in Recovery Console. An attrib command is also available from the Command Prompt. attrib [+r|-r] [+s|-s] [+h|-h] [+c|-c] [filename] +r = This assigns the read-only file attribute to the file or directory. -r = This removes the read-only attribute. +s = This assigns the system file attribute to the file or directory. -s = This removes the system attribute. +h = This assigns the hidden file attribute to the file or directory. -h = This removes the hidden attribute. +c = This assigns the compressed file attribute to the file or directory. -c = This removes the compressed attribute. filename = This is the file or directory that you are wanting to change the attributes of.
Attirb command is used to change the attribute of any file of directory. There are following kinds of attributes in DOS:R - Read OnlyH - HiddenA - ArchiveS - SystemAmong all, Archive (A) attributes applies by default as we create any file or directory. System (S) attribute is reserved for the System Files (IO.SYS, MSDOS.SYS, CONFIG.SYS) of MS-DOS. We can apply Read Only or Hidden attributes to any file or directory to make it read only of hidden. The syntax is as follows:To make file Read Only: attrib +r To make file Hidden: attrib +h To remove Read Only attribute: attrib -r To remove Hidden attribute: attrib -h Similarly we can set/remove Archive (A) or System (S) attributes to file with +a/-a or +s/-s option.
Archived.. The archive attribute identifies if a file has been modified since the last backup. A file attribute is metadata that gives certain qualities to a file after the attribute has been given
It's either hidden, archive, read-only, protected. Hopefully someone can filter these for the correct answer.
Anal-file
The command "attrib +r -h" is used in the command prompt to set a file as read-only (+r) and remove the hidden attribute (-h) from a file. This command can help protect files from being accidentally modified and also make hidden files visible.
Hidden files are files stored on the disk, but which do not show up when you list a directory of the disk.In DOS, you normally type the command DIR to view the files on a disk. If you would like to see hidden file names, use the command DIR /AH (A=Attribute; H=Hidden).
A hidden file is a file file that does not appear in the directory list. A 9x/ME file like this would be boot.ini. A hidden file is a file that is not displayed in a directory list. Whether to hide or display a file is one of the file's attributes kept by the OS. A 9x/Me file like this would be boot.ini.
Attrib allows a user to change the properties of a specified file. Using Attrib, the user has the capability of changing the file to have any of the below attributes. This command is available in DOS 3.0 and above and Windows 95 and above. We need to apply (+) or (-) option to apply or remove the effect.Read-only (R): Allowing the file to be only viewed and not written to.Archived (A): Allowing Microsoft backup and other backup programs to know what files to backup.Hidden (H): Making the file invisible to standard users.System (S): Making the file an important system file.Syntax: attrib ExamplesTo Set the Read Only permission to Autoexec.bat present in C Drive, we need to run the Command: "attrib +r c:\autoexec.bat"To Remove the Read Only permission from Autoexec.bat, we need to run the Command: "attrib -r c:\autoexec.bat"To Set the Hidden permission to Autoexec.bat, we need to run the command: "attrib +h c:\autoexec.bat"To Remove the Hidden permission from Autoexec.bat, we need to run the Command: "attrib -h c:\autoexec.bat"When you create any file or directory, Archive Attribute set by default. If you want to see the Attribute for each file, just run "attrib" Command and it will show you the present attribute. If you want to see the file with Read Only attribute, run "dir /ar" Command. Similarly for Hidden Attribute run "dir /ah" and for System Attribute run "dir /as". In ideal DOS, it is not possible to delete any file having Read Only or Hidden attributes, but if you are working with Windows Shell, you can delete the file having these attributes.
A hidden file is a file file that does not appear in the directory list. A 9x/ME file like this would be boot.ini. A hidden file is a file that is not displayed in a directory list. Whether to hide or display a file is one of the file's attributes kept by the OS. A 9x/Me file like this would be boot.ini.