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.
- β Fully Offline β No internet required to run
- π» CMD-Based GUI β Styled interface in the Command Prompt
- π Secure Hide Functionality β Uses
attrib +h +s +rto 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.txton every launch for a personal touch
- Download or clone this repository
- Run the script:
Right-click onFolderProtector.batβ Run as Administrator - 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
- 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- π This is not a password-protection tool. It uses Windows
attribcommands 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.
- Developer: @HajiSab007
- Telegram Contact: @Hajisab_Robot
- Interface Design: CMD GUI with quote loader and colored output
