Windows hide hidden files on desktop

How to Show Hidden Files in Windows 10

By Mitch Bartlett 10 Comments

By default, Microsoft Windows 10 hides certain files from view when you explore them on your hard drive. This protects important files from being deleted so that the system isn’t damaged. If you’re the geeky type, you’ll want to be able to view all files all the time. Follow these steps to show hidden files.

Option 1 – From File Explorer

  1. Select the “Start” button, then choose “File Explorer“.
  2. Make sure the menu bar is expanded. You can toggle the menu bar by selecting the ^ at the upper right portion of the window.
  3. Select the “View” tab.
  4. Check the “Hidden items” check box to view hidden items.
  5. If you need more file viewing options, select “Options” > “View“.

Option 2 – From Control Panel

  1. Right-click the “Start” button, then select “Control Panel“.
  2. Go to “Appearance and Personalization“, then select “File Explorer Options“.
  3. Click the “View” tab.
  4. Scroll down a bit and change the “Hidden files and folders” setting to “Show hidden files, folders, and drives“. Optionally, you may wish to uncheck the “Hide protected operating system files” box as well.

Option 3 – Via Registry

  1. Hold the Windows Key and press “R” to bring up the Run dialog box.
  2. Type “regedit“, then press “Enter“.
  3. Navigate to the following location:
    • HKEY_CURRENT_USER
    • Software
    • Microsoft
    • Windows
    • CurrentVersion
    • Explorer
    • Advanced
  4. Set the value for “Hidden” to “1” to show hidden files, folders, and drives. Set the value to “2” to not show hidden files, folders, and drives.
  5. Set the value for “ShowSuperHidden” to “1” to show protected operating system files. Set the value to “2” to not show protected operating system files.

You Might Also Like

Filed Under: Windows Tagged With: Windows 10

Reader Interactions

Comments

Kartik singh says

I have nokia lumia 520.
I want to convert it into android.I want to know that after installing the android. Will my sim card work and data connection.

Jan de Vos says

I have reinstalled the USB driver successfully. Though, Samsung dex did not recognize my device.

Neha Singh says

This one worked. Thanks for the guidance. It really helped me alot.

Ok, I just checked this out… here’s an example where the attrib method (below) will show files when the author’s method will not. To illustrate, configure Explorer to show all files as outlined in this article. Then,

1) Open a 2nd Windows Explore and navigate to C:\Users\\AppData\Roaming\Microsoft\Windows\Recent Items

2) Shift select and delete these files (or move them to a temp location; I think advanced “Disk Cleanup” tool will delete as well).

Also, note that all the advanced “show file” setting made earlier are still intact.
Next open a command prompt in the …\Recent Items folder. To do this:

1) Open a 3rd explorer window and navigate *in the left panel* to C:\Users\\AppData\Roaming\Microsoft\Windows

2) With your mouse over the “Windows” folder *still in the left panel*, hold down Left-Shift + Right Mouse Click to get the advanced context menu, click on “Open command window here”

3) In the …\Roaming\Microsoft\Windows> command prompt, key in: “cd recent”

4) Key in …\recent\> attrib *.*

You should see a bunch of files not shown in explorer.

Charles Davis says

The current version of Win 10 looks and works differently, so this just confused me.

I don`t have CurrentVersion in Windows from HKEY_CURRENT_USER, please help me!

No. Unable to change entry. Received notice “Cannot edit Hidden. Error writing the value’s new contents”.

This saved me so much time! Thank you!

This saved me so much time! Thank you!

Did this help? Let us know! Cancel reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Primary Sidebar

Recent Posts

Who’s Behind Technipages?

My name is Mitch Bartlett. I’ve been working in technology for over 20 years in a wide range of tech jobs from Tech Support to Software Testing. I started this site as a technical guide for myself and it has grown into what I hope is a useful reference for all.

Follow me on Twitter, or visit my personal blog.

How to hide files and folders on Windows 10

No matter what kind of content you keep on your computer, you’ll always find reasons to hide certain files and folders. Perhaps you have important documents and videos that you want to keep under wraps, or you simply want to prevent users from accidentally deleting certain files if you’re sharing your PC with other people.

Читайте также:  Установка realtek hd windows как

For whatever the reason it might be, on Windows 10, you can quickly hide a file or folder in two different ways, including using File Explorer or using the attrib command using Command Prompt.

In this Windows 10 guide, we’ll walk you through the easy steps to hide a file and folder on your computer. In addition, you’ll learn the steps to access those hidden items as needed.

How to hide files and folders using File Explorer

The easiest way to keep content hidden is using File Explorer.

  1. Open File Explorer.
  2. Navigate to the file or folder you want to hide.

Right-click the item and click on Properties.

Click Apply.

Click OK.

  • Click OK again to complete the task.
  • Once you’ve completed the steps, the hidden items will not be visible anymore, because by default Windows 10 doesn’t show hidden files.

    If you want to access your hidden items you’ll have to type the complete path to the hidden folder or file you want to open and press Enter. For example: C:\Users\admin\Desktop\Files\Secret Files\Great Secret.txt.

    Or you can open File Explorer, click on the View tab and make sure to check the Hidden items option. Then you can browse your hidden items as you would normally do with other content.

    At any time, you can make the files and folders visible again by using the same steps mentioned above, but this time on step 4 make sure to clear the Hidden option.

    How to hide files and folders using Command Prompt

    Alternatively, you can also use Command Prompt to hide files and folders on your computer.

    1. Open Start.
    2. Do a search for Command Prompt and click the result.

    Type the following command to navigate to the items you want to hide and press Enter:

    In the command replace the path after cd with the path to your file or folder.

    Type the following command to hide a folder or file and press Enter:

    attrib +h «Secret Files»

    In the command replace «Secret Files» with the name of your folder or file. Quotation marks are only necessary when there are spaces in the name.

    If you’re trying to hide a folder with files and subfolders, which you also want to keep hidden, then you’ll need to use these steps as well.

    While in Command Prompt type the following command to navigate inside the hidden folder and press Enter:

    cd «Secret Files»

    In the command replace «Secret Files» with the name of your hidden folder.

    Type the following command to hide all files and folders inside the hidden folder and press Enter:

    After completing the steps, the items with the hidden attribute will no longer be visible.

    Making hidden files and folders visible again

    If you change your mind, you can use the following steps to remove the hidden attribute for files and folders.

    1. Open Start.
    2. Do a search for Command Prompt and click the result.

    Type the following command to navigate to the hidden items location and press Enter:

    In the command replace the path after cd with the path to your file or folder.

    Type the following command to make the items visible again and press Enter:

    attrib -h «Secret Files»

    In the command replace «Secret Files» with the name of your folder or file. Quotation marks are only necessary when there are spaces in the name.

    In the case you also set the hidden attribute for files and subfolders inside of a folder, then do the following to remove the attribute.

    While in Command Prompt type the following command to navigate inside the hidden folder and press Enter:

    cd «Secret Files»

    In the command replace «Secret Files» with the name of your hidden folder.

    Type the following command to remove the hidden attribute from all files and folders inside the folder and press Enter:

    Which method do you prefer to hide files and folders on Windows 10? Tell us in the comments below.

    More Windows 10 resources

    For more help articles, coverage, and answers on Windows 10, you can visit the following resources:

    The Dell XPS 15 is our choice for best 15-inch laptop

    For a lot of people, a 15-inch laptop is a perfect size that offers enough screen for multitasking, and in a lot of cases, some extra performance from powerful hardware. We’ve rounded up the best of the best at this size.

    Halo: MCC’s live service elements make it better, not worse

    Halo: The Master Chief Collection is more popular than ever, but some fans don’t agree with the live service approach 343 Industries has taken with it. Here’s why those elements are, at the end of the day, great for the game and for Halo overall.

    Microsoft’s Surface Duo is not ‘failing up’

    Microsoft announced this week that it was expanding Surface Duo availability to nine new commercial markets. While Surface Duo is undoubtedly a work in progress, this is not a sign of a disaster. It’s also doesn’t mean that Surface Duo is selling a ton either. Instead, the reason for the expansion is a lot more straightforward.

    These are the best PC sticks when you’re on the move

    Instant computer — just add a screen. That’s the general idea behind the ultra-portable PC, but it can be hard to know which one you want. Relax, we have you covered!

    Windows hide hidden files on desktop

    By default Windows hides certain files from being seen with Windows Explorer or My Computer. This is done to protect these files, which are usually system files, from accidentally being modified or deleted by the user. Unfortunately viruses, spyware, and hijackers often hide there files in this way making it hard to find them and then delete them.

    By following the steps below for each version of Windows you will be able to change the operating systems behavior so that you can see hidden and protected files. In this way you will be able to delete or replaces files for troubleshooting purposes.

    Windows 95

    To enable the viewing of Hidden files follow these steps:

    1. Close all programs so that you are at your desktop.
    2. Double-click on the My Computer icon.
    3. Select the View menu and then click Options.
    4. After the new window appears select the View tab.
    5. Scroll down until you see the Show all files radio button and select it.
    6. Press the OK button and close the My Computer window.
    7. Now your computer is configured to show all hidden files.

    Windows 98

    To enable the viewing of Hidden files follow these steps:

    1. Close all programs so that you are at your desktop.
    2. Double-click on the My Computer icon.
    3. Select the View menu and then click Folder Options.
    4. After the new window appears select the View tab.
    5. Scroll down until you see the Show all files radio button and select it.
    6. Press the Apply button and then the OK button and close the My Computer window.
    7. Now your computer is configured to show all hidden files.

    Windows ME

    To enable the viewing of Hidden files follow these steps:

    1. Close all programs so that you are at your desktop.
    2. Double-click on the My Computer icon.
    3. Select the Tools menu and click Folder Options.
    4. After the new window appears select the View tab.
    5. Under the Hidden files and folders section select the radio button labeled Show hidden files and folders.
    6. Remove the checkmark from the checkbox labeled Hide file extensions for known file types.
    7. Remove the checkmark from the checkbox labeled Hide protected operating system files.
    8. Press the Apply button and then the OK button and shutdown My Computer.
    9. Now your computer is configured to show all hidden files.

    Windows NT

    To enable the viewing of Hidden files follow these steps:

    1. Close all programs so that you are at your desktop.
    2. Double-click on the My Computer icon.
    3. Select the View menu and then click Options.
    4. After the new window appears select the View tab.
    5. Scroll down until you see the Show all files radio button and select it.
    6. Press the OK button and shutdown My Computer.
    7. Now your computer is configured to show all hidden files.

    Windows 2000

    To enable the viewing of Hidden files follow these steps:

    1. Close all programs so that you are at your desktop.
    2. Double-click on the My Computer icon.
    3. Select the Tools menu and click Folder Options.
    4. After the new window appears select the View tab.
    5. Under the Hidden files and folders section select the radio button labeled Show hidden files and folders.
    6. Remove the checkmark from the checkbox labeled Hide file extensions for known file types.
    7. Remove the checkmark from the checkbox labeled Hide protected operating system files.
    8. Press the Apply button and then the OK button and shutdown My Computer.
    9. Now your computer is configured to show all hidden files.

    Windows XP and Windows 2003

    To enable the viewing of Hidden files follow these steps:

    1. Close all programs so that you are at your desktop.
    2. Double-click on the My Computer icon.
    3. Select the Tools menu and click Folder Options.
    4. After the new window appears select the View tab.
    5. Put a checkmark in the checkbox labeled Display the contents of system folders.
    6. Under the Hidden files and folders section select the radio button labeled Show hidden files and folders.
    7. Remove the checkmark from the checkbox labeled Hide file extensions for known file types.
    8. Remove the checkmark from the checkbox labeled Hide protected operating system files.
    9. Press the Apply button and then the OK button and shutdown My Computer.
    10. Now your computer is configured to show all hidden files.

    Windows Vista

    To enable the viewing of Hidden files follow these steps:

    1. Close all programs so that you are at your desktop.
    2. Click on the Start button. This is the small round button with the Windows flag in the lower left corner.
    3. Click on the Control Panel menu option.
    4. When the control panel opens you can either be in Classic View or Control Panel Home view:

    If you are in the Classic View do the following:

    1. Double-click on the Folder Options icon.
    2. Click on the View tab.
    3. Go to step 5.

    If you are in the Control Panel Home view do the following:

    1. Click on the Appearance and Personalization link .
    2. Click on Show Hidden Files or Folders.
    3. Go to step 5.
  • Under the Hidden files and folders section select the radio button labeled Show hidden files and folders.
  • Remove the checkmark from the checkbox labeled Hide extensions for known file types.
  • Remove the checkmark from the checkbox labeled Hide protected operating system files.
  • Press the Apply button and then the OK button.
  • Now Windows Vista is configured to show all hidden files.
  • Windows 7

    To enable the viewing of Hidden files follow these steps. Please note a guide with images that shows the same steps can be found here: How to show hidden files in Windows 7

    1. Close all programs so that you are at your desktop.
    2. Click on the Start button. This is the small round button with the Windows flag in the lower left corner.
    3. Click on the Control Panel menu option.
    4. When the control panel opens click on the Appearance and Personalization link.
    5. Under the Folder Options category, click on Show Hidden Files or Folders.
    6. Under the Hidden files and folders section select the radio button labeled Show hidden files, folders, or drives.
    7. Remove the checkmark from the checkbox labeled Hide extensions for known file types.
    8. Remove the checkmark from the checkbox labeled Hide protected operating system files (Recommended).
    9. Press the Apply button and then the OK button..
    10. Now Windows 7 is configured to show all hidden files.

    Windows 8

    To enable the viewing of Hidden files follow these steps. Please note a guide with images that shows the same steps can be found here: How to see hidden files in Windows 8

    1. From the Windows 8 Start Screen, click on the Control Panel app.
    2. When the Control Panel opens scroll down to the bottom and click on the More Settings option.
    3. The traditional Windows 8 Control Panel will now open. When it is open, click on the Appearance and Personalization link.
    4. Under the Folder Options category, click on Show Hidden Files or Folders.
    5. Under the Hidden files and folders section select the radio button labeled Show hidden files, folders, or drives.
    6. Remove the checkmark from the checkbox labeled Hide extensions for known file types.
    7. Remove the checkmark from the checkbox labeled Hide protected operating system files (Recommended).
    8. Press the Apply button and then the OK button..
    9. Now Windows 8 is configured to show all hidden files.

    Windows 10

    To enable the viewing of Hidden files in Windows 10, please follow these steps:

    1. From the Windows 10 Start Screen, click on the File Explorer buttonon the task bar.
    2. When File Explorer opens, click on the View tab and then select Options.
    3. When the Folder Options screen opens, click on the View tab.
    4. You will now see various settings you can select.
    5. Folder Options category, click on Show Hidden Files or Folders.
    6. Under the Hidden files and folders section select the radio button labeled Show hidden files, folders, or drives.
    7. Remove the checkmark from the checkbox labeled Hide extensions for known file types.
    8. Remove the checkmark from the checkbox labeled Hide protected operating system files (Recommended).
    9. Press the Apply button and then the OK button..
    10. Now Windows 10 is now configured to show all hidden files.

    Conclusion

    Now that you know how to see all hidden files on your computer, malicious programs such as viruses, spyware, and hijackers will no longer be able to hide their presence from you or people helping you.

    Please note that you will now see icons that were not previously visible. One of the most common concerns is that you will see a file called desktop.ini throughout your computer. These are legitimate hidden files and can be ignored.

    If you have any questions please feel free to post them in our computer help forums.

    Users who read this also read:

    How to show hidden files in Windows 7

    Windows 7 hides certain files so that they are not able to be seen when you exploring the files on your computer. The files it hides are typically Windows 7 System files that if tampered with could cause problems with the proper operation of the computer. It is possible, though, for a user or piece of software to set make a file hidden by enabling the hidden attribute in a particular file or .

    How to remove a Trojan, Virus, Worm, or other Malware

    If you use a computer, read the newspaper, or watch the news, you will know about computer viruses or other malware. These are those malicious programs that once they infect your machine will start causing havoc on your computer. What many people do not know is that there are many different types of infections that are categorized in the general category of Malware.

    How to start Windows in Safe Mode

    Windows Safe Mode is a way of booting up your Windows operating system in order to run administrative and diagnostic tasks on your installation. When you boot into Safe Mode the operating system only loads the bare minimum of software that is required for the operating system to work. This mode of operating is designed to let you troubleshoot and run diagnostics on your computer. Windows Safe Mode .

    How to Setup Login Verification in Twitter

    To increase security, Twitter offers a feature called Login verification, which is their version of two-step verification. With Login verification enabled on an account, a user will not only need their password to login, but will also require a code sent to your mobile number at the time of the login.

    How to see hidden files in Windows 8

    Windows 8 hides certain files so that you are not able to view them while exploring the files and folders on your computer. Windows has two types of files that Windows will classify as hidden and hide from the user. The first type are actually hidden files, which are ones that are given the +H attribute or specified as Hidden in a file or folder’s properties. The second type of file are System .

    Читайте также:  Как активировать все ядра процессора windows 10 amd
    Оцените статью