Remember to maintain security and privacy. Do not share sensitive information. Procedimento.com.br may make mistakes. Verify important information. Termo de Responsabilidade

How to Manage File and Folder Options in Windows

Managing file and folder options in Windows is essential for customizing how you view and interact with your files. Windows provides several built-in options that allow you to change folder views, enable or disable file extensions, and manage hidden files. This article will guide you through various ways to manage these options using graphical interfaces and command-line tools.

Examples:

Example 1: Changing Folder View Options via File Explorer

  1. Open File Explorer: You can do this by clicking on the folder icon in the taskbar or pressing Win + E.

  2. Access Folder Options:

    • Click on the "View" tab in the ribbon.
    • Click on "Options" on the far right, and then select "Change folder and search options."
  3. Modify Settings:

    • In the Folder Options window, you can change settings such as opening folders in the same or new window, displaying file icons on thumbnails, and more.
    • Click "OK" to apply changes.

Example 2: Showing File Extensions and Hidden Files via CMD

You can use the Command Prompt to change folder options related to file extensions and hidden files.

  1. Open Command Prompt:

    • Press Win + R, type cmd, and press Enter.
  2. Show File Extensions:

    • Execute the following command to show file extensions:
      reg add HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced /v HideFileExt /t REG_DWORD /d 0 /f
  3. Show Hidden Files:

    • Execute the following command to show hidden files:
      reg add HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced /v Hidden /t REG_DWORD /d 1 /f
  4. Refresh Explorer:

    • To apply changes, restart Windows Explorer by executing:
      taskkill /f /im explorer.exe && start explorer.exe

Example 3: Using PowerShell to Manage Folder Options

PowerShell provides a more powerful way to manage folder options, especially for advanced users.

  1. Open PowerShell:

    • Press Win + X and select "Windows PowerShell" or "Windows PowerShell (Admin)".
  2. Show File Extensions:

    Set-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" -Name "HideFileExt" -Value 0
  3. Show Hidden Files:

    Set-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" -Name "Hidden" -Value 1
  4. Refresh Explorer:

    Stop-Process -Name explorer -Force
    Start-Process explorer

These examples illustrate how you can manage file and folder options in Windows using both the graphical interface and command-line tools. Adjusting these settings can enhance your productivity and make file management more efficient.

To share Download PDF

Gostou do artigo? Deixe sua avaliação!
Sua opinião é muito importante para nós. Clique em um dos botões abaixo para nos dizer o que achou deste conteúdo.