How to add tags to a folder in windows 10

Solution 1:

Without third-party tool(like tagspaces), we cannot tag folder directly.

Solution 2:

I built a simple tool for tagging folders in Windows 10. This tool is based on the well-documented system file "desktop.ini" which was designed to customize many aspects of the folder's behavior in Microsoft Windows. The system file already has the folder-tagging capability built into it. For whatever reasons, Microsoft did not implement any user-friendly interface to use the capability. This tool provides an easy way to modify the system file using GUI input dialog box. All you need to do is to register a batch file to your system registry without any need to install additional programs.

If you are interested, please follow these steps at your own risk.

Step 1: Download Tag_Folder.bat from the link below.

  • https://drive.google.com/file/d/1ielPA2kVfVDe4GAjprqtuO5dcX3qJyz3/view
  • Do your own due diligence by inspecting the batch file.

Step 2: Add “Tag Folder” to your context menu using Regedit.exe

  • Open the Registry Editor:
    • Hit Win+R
    • type regedit
    • Hit Enter
    • Select “Yes”
  • Navigate to HKEY_CLASSES_ROOT\Directory\Background\shell
  • Create a new key Tag Folder within shell
  • Create a new key command within Tag Folder
  • Select command and double-click on “(Default)” in the right panel
  • Enter cmd /c start "" /min "yourpath\Tag_Folder.bat" in the “Value data” field
  • Hit “OK”

Step 3: Organize your folders with custom tags.

  • Go to the folder you wish to tag.
  • Right-click in the blank space and click “Tag Folder”
  • Enter your tag in the GUI input dialog box and Click OK.
  • You may have to refresh several times to see the new tags.

You can find more information in the description of my tutorial video posted on Youtube.

How to Tag Folders in Windows 10