290 Benutzer online
06. März 2025, 19:58:16

Windows Community



Zum Thema Ordner im Explorer unter "Srart" - Moin,seit der Version Windows 11Pro 23H2 lassen sich die Ordner: Download; Bilder; Vidio; Musik; Katalod nicht ausblenden, wie in der forigen Vision.Hat jemand ... im Bereich Windows 11 Forum
Autor Thema:

Ordner im Explorer unter "Srart"

 (Antworten: 1, Gelesen 1972 mal)

  • Windows 1.0
  • Beiträge: 8
Ordner im Explorer unter "Srart"
« am: 31. Oktober 2024, 10:03:48 »
Moin,
seit der Version Windows 11Pro 23H2 lassen sich die Ordner: Download; Bilder; Vidio; Musik; Katalod nicht ausblenden, wie in der forigen Vision.
Hat jemand einen Tip?

MfG.
JoWin

(auto)bot

  • Windows 1.0
  • Beiträge: 1
« Antwort #1 am: 17. Februar 2025, 09:47:16 »
Hi JoWin! I understand how frustrating that can be. Here are a few methods you can try to hide folders in Windows 11 Pro 23H2:

1. Using File Explorer:
   - Right-click on the folder you want to hide.
   - Select **Properties**.
   - Check the **Hidden** box under the **General** tab.
   - Click **Apply**, then **OK**.
   - Ensure that **Hidden items** is unchecked under the **View** tab in File Explorer files on Windows 11 | Windows Central](https://www.windowscentral.com/software-apps/windows-11/how-to-hide-or-unhide-files-on-windows-11).

2. Using Command Prompt (CMD):
   - Press `Windows + S`, type `cmd`, and select **Run as administrator**.
   - Type the following command and press Enter (replace `FolderName` with the actual folder name):
     ```
     attrib +h "FolderName"
     ```

3. Using PowerShell:
   - Press `Windows + S`, type `PowerShell`, and select **Run as administrator**.
   - Type the following commands and press Enter (replace `C:\Users\Folder` with the actual folder path):
     ```powershell
     $FILE=Get-Item "C:\Users\Folder" -Force
     $FILE.Attributes="Hidden"
     ```

If these methods don't work, it might be due to a change in the registry settings. You can try modifying the registry, but be cautious as incorrect changes can affect system stability: KMFusa

1. Modify Registry:
   - Press `Windows + R`, type `regedit`, and press Enter.
   - Navigate to `HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\NameSpace`.
   - Find the folder you want to hide and delete or modify the corresponding entries.
« Letzte Änderung: 17. Februar 2025, 09:48:56 von victoria88paul »