Skip to content

taahayaseen/Hider

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

3 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

πŸ” Folder Protector Tool (Offline CMD Utility)

A powerful and simple offline tool to hide, unhide, and scan hidden files or folders using the native Windows attrib command.
Built with a sleek command-line GUI and completely offline functionality.


πŸ–ΌοΈ Interface Preview

Folder Protector Tool Preview


🧰 Features

  • βœ… Fully Offline – No internet required to run
  • πŸ’» CMD-Based GUI – Styled interface in the Command Prompt
  • πŸ”’ Secure Hide Functionality – Uses attrib +h +s +r to hide files/folders at the system level
  • πŸ”“ Unhide Option – Restore access to protected files/folders
  • πŸ” Scan Option – Locate all hidden+system items in a folder (in case you forget what you hid)
  • πŸ’¬ Random Quote Loader – Loads a random line from data.txt on every launch for a personal touch

πŸš€ How to Use

  1. Download or clone this repository
  2. Run the script:
    Right-click on FolderProtector.bat β†’ Run as Administrator
  3. Choose one of the following options:
    • Hide – Enter the full path to a folder or file to hide
    • Unhide – Enter the path to make a file/folder visible again
    • Scan – Enter a directory to find all hidden/system protected items

πŸ› οΈ How It Works

  • Hides with:

attrib +h +s +r "C:\YourPath"

  • Unhides with:

attrib -h -s -r "C:\YourPath"

  • Scans using PowerShell:
Get-ChildItem -Path "C:\YourPath" -Recurse -Force |
Where-Object {
  ($_.Attributes -band [IO.FileAttributes]::Hidden) -and
  ($_.Attributes -band [IO.FileAttributes]::System)
} | Select-Object -ExpandProperty FullName

⚠️ Important Notes

  • πŸ” This is not a password-protection tool. It uses Windows attrib commands to hide files/folders.
  • 🧠 Avoid hiding important system files to prevent accidental data loss.
  • πŸ“ If you forget the name/location of a hidden file, use the Scan option to reveal all hidden items in a directory.

πŸ§‘β€πŸ’» Credits


About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors