Jump to content
Microsoft Windows Bulletin Board

Unable to find some of hidden files (purposely hidden using a .bat file). The .bat file is missing now.


Recommended Posts

Guest kashyap_nish
Posted

i had used a .bat file to hide some of my files but now I can not locate that .bat file using which I used to open my hidden directory. How can I get my files back? The files were in C drive.

 

I have used below codes in .bat file:

 

cls

 

@ECHO OFF

 

title Folder Private

 

if EXIST "HTG Locker" goto UNLOCK

 

if NOT EXIST Private goto MDLOCKER

 

:CONFIRM

 

echo Are you sure you want to lock the folder(Y/N)

 

set/p "cho=>"

 

if %cho%==Y goto LOCK

 

if %cho%==y goto LOCK

 

if %cho%==n goto END

 

if %cho%==N goto END

 

echo Invalid choice.

 

goto CONFIRM

 

:LOCK

 

ren Private "HTG Locker"

 

attrib +h +s "HTG Locker"

 

echo Folder locked

 

goto End

 

:UNLOCK

 

echo Enter password to unlock folder

 

set/p "pass=>"

 

if NOT %pass%== PASSWORD_GOES_HERE goto FAIL

 

attrib -h -s "HTG Locker"

 

ren "HTG Locker" Private

 

echo Folder Unlocked successfully

 

goto End

 

:FAIL

 

echo Invalid password

 

goto end

 

:MDLOCKER

 

md Private

 

echo Private created successfully

 

goto End

 

:End

 

Continue reading...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...