Quote:
|
Originally Posted by Topazworm
A while back i had an accident with my comp. As a result the "My Documents Folder" i think was encrypted and after reformat it cant be accessed. Since downloading the demo of Active File REcovery it teases me by showing the entire contents of my lost dir and the ability to recover the files. So my question is:
Its not lost data its encrypted. Is there a way i can access the folder? i dont want to pay fo rthe programme simply because i cannot afford it
and 2 is there a way of deleting the folder in question. as it will always state "access denied" when i try to do anything with it!
any help is appreciated!!
|
Hi,
Iv put a batch script together that might totaly recover the folder. Including giving you access to it. But keep in mind that I have never had to do this on my own machine, so I cant say it will work for sure. But here it is anyway.
Copy the text starting from the line "@ECHO OFF" and paste it into notepad, then save it as ATTRIB.cmd then double click it.
Where you see "username" change it for your windows user name. In the "CALCS" line where "username" is specified, wrap it in quotes if your username has more then one word, like "john doe". Also, press Y folowd by enter when prompted. Sorry if the instructions are a bit stechy, if you like you could type each line into a command window pressing enter after each line.
@ECHO OFF
title Attrib changer
ECHO.
ECHO This command file will attempt to change the attribute set on "My Documents".
pause
CACLS "C:\Documents and Settings\username\My Documents" /P username:F
ATTRIB -S -H "C:\Documents and Settings\username\My Documents"
ATTRIB -E "C:\Documents and Settings\username\My Documents"
pause
EXIT