answersLogoWhite

0


Best Answer

To access hidden files from command prompt, go to start, and in the search box, type "cmd", then enter. From there, click start, computer, my computer and look for F drive. Type F, then enter. Then type attrib -s -h -r /s /d, and hit enter. Go to your F drive and you should be able to see the hidden files.

User Avatar

Wiki User

9y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: From command prompt how do you display hidden files?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What MS-DOS command can display hidden files?

The attrib command is capable of displaying files that have been marked as hidden.


Which MS-DOS command can display hidden files?

If you just want to display the hidden files, run following command: dir /ah this will show you all hidden files and folders.. However if you want to change the attributes permanently, use attrib command..


Which MS DOS command can display hidden files?

If you just want to display the hidden files, run following command: dir /ah this will show you all hidden files and folders.. However if you want to change the attributes permanently, use attrib command..


What are the three files required to boot Windows 9x to a command prompt?

io.sys msdos.sys command.com


What command erases files or groups of files?

The Del or Erase command in command prompt.


What is attrib plus r -h?

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.


How do you encrypt files with Command Prompt?

The command 'cipher' calls a program that is integrated with Windows that can encrypt-decrypt files.


Would the ls -a command show hidden files?

Yes, in Linux or Unix, this command will show all files including hidden files in the current directoryl. In general, hidden files are files whose name begins with a period "."


At the command prompt you can use what command to control how user accounts can access files and folders?

cacls


Why are hidden files on a DOS disk?

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).


How do you delete hidden files using batch scripts?

You can just delete hidden files with the same del command, but since the files are hidden you need to map the location of the hidden folder in the command so the batch file knows where to look and delete. @Echo off del "location of hidden files and/or folders" /Q /F /S exit


Explin the use of the wild cord in the ms dos?

Is used as a general search method for the ms dos days. at the command prompt: c:\ dir *.txt; means search and display all files ending with a '.txt' and display them on the screen.