Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
appreciate some help
#1
oK so i found this tutorial on youtube that teaches you how to make a batch file that makes a folder invisible/untouchable, and in order to access the folder you need the password(which you type in the batch file)

here's the code
Code:
cls
@ECHO OFF
title Folder Personal
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST Personal goto MDLOCKER
:CONFIRM
echo Are you sure u 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 Personal "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
attrib +h +s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
echo Folder locked
goto End
:UNLOCK
echo Enter password to Unlock folder
set /p "pass=>"
if NOT %pass%==password goto FAIL
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" Personal
echo Folder unlocked successfully
goto End
:FAIL
echo Invalid password
goto UNLOCK2
:FAIL2
echo Invalid password
goto end
:MDLOCKER
md Personal
echo Folder created successfully
goto End
:UNLOCK2
echo Last chance to enter correct password to unlock folder
set /p "pass=>"
if not %pass%==password goto FAIL2
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" Personal
echo Folder unlocked successfully
:End

ok so here's my problem.
I made the batch file on my desktop, and put all my important files into it(not porn), then put the batch file into another directory,
and now i can't access my important files because they stay invisible/untouchable.
Wacko

and i was just wondering if i can retrieve them. If anyone can help.

Big Grin
Reply


Messages In This Thread
appreciate some help - by Infinite - 05-31-2010, 09:19 AM
RE: appreciate some help - by Cida - 05-31-2010, 09:49 AM
RE: appreciate some help - by Infinite - 05-31-2010, 10:24 AM
RE: appreciate some help - by Cida - 05-31-2010, 08:21 PM
RE: appreciate some help - by Infinite - 06-04-2010, 10:04 PM
RE: appreciate some help - by Nemmyy - 05-31-2010, 09:50 AM
RE: appreciate some help - by Natha - 05-31-2010, 02:03 PM
RE: appreciate some help - by MeowMonster1344 - 06-02-2010, 04:45 PM

Forum Jump:


Users browsing this thread: 1 Guest(s)