| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
InTag is a lightweight tool for tagging files and folders directly from the Windows Explorer context menu. Nearby tags are suggested automatically for quick reuse.
Tags are the default property. Use --property to work with other metadata.
# Add tags to a folder:
intag --add "vacation" --add "2026" --path "C:\Photos\Summer"
# Remove a tag:
intag --remove "vacation" --path "C:\Photos\Summer"
# View current tags:
intag --path "C:\Photos\Summer"
# Set the author on a file:
intag --property author --add "John Doe" --path report.docx
# Set a category:
intag --property category --add "Work" --path project.docx
# Set a comment:
intag --property comments --add "Draft version, needs review" --path notes.docx
# Set company:
intag --property company --add "Acme Corp" --path invoice.docx
# Set street address metadata:
intag --property street --add "123 Main St" --path contact.docx
# Process multiple files from a list:
intag --add "archive" --list "C:\files_to_tag.txt"
# Open the UI for specific files:
intag --ui --path file1.txt --path file2.txt| Property | CLI name | Type | Explorer Column |
|---|---|---|---|
| Tags | tags (default) | Multi-value | Tags |
| Title | title | Single value | Title |
| Subject | subject | Single value | Subject |
| Author | author | Multi-value | Authors |
| Comments | comments | Free text | Comments |
| Category | category | Multi-value | Categories |
| Company | company | Single value | Company |
| Street | street | Single value | Business Street |
| Other Street | otherstreet | Single value | Other Street |
All properties work with both files and folders, are stored as standard Windows metadata, and are visible in Explorer's column view. Use Ctrl+F in the InTag UI to toggle column visibility, or Ctrl+D to toggle grouping.
Install from the Microsoft Store. Updates are handled automatically.
Download the latest release from GitHub Releases and run intag.exe. It will register itself automatically on first launch.
montoner0 - great PR with bunch of improvements and fixes, also nice suggestions
The code for individual file management was taken from the Windows API Code Pack.
| Back | FazBrowse Home | New Git URL |