eg: UK or Brides UK or Classical Art or Buy Music or Spirituality
 
eg: UK or Brides UK or Classical Art or Buy Music or Spirituality
 

Your Online Guide » Computer Software » Best Data Recovery Software

[F769]Free Password Recovery Tools
by Mathew Petrenko, Mat
The HDD is a device which is comprised into the structure of PC and that is intended to store the required data on its surface. In case you are a well-skilled user you should know that it is not safely to utilize the HDD as a main information carrier. You must know that every mechanism may malfunction and it can produce a huge amount of different problems for you as a client. So if you have some really necessary information on the HDD it would be nicer for you to buy some disks and use them to store your info and not to use recover data tools.

Usually the HDD is separated on several parts and sometimes you can lose not just a piece of data, but entire partition as a result of unintentional formatting of the partition. But even in such case the lost information can be recovered if you haven't overwritten such. The HDD is divided on a huge amount of small sectors named clusters. Every cluster saves a piece of information. That is difficult to track the area that is used to save new data, so that is nicer just not to record any information at all.

Well-skilled programmers can remember the time when the basic mean of info recovery was some primitive software without any interface. The level of efficiency of such programs was believed to be great but in case we match such software with some modern systems we may find that the difference is really great. Such old data recovery software can not work with modern file systems and the modern software may be utilized in all the file systems existing today. For a lot of users it is very important as not all the computers are completely equipped with NTFS, some of them still use FAT 32 or even FAT 16.

You have to select the appropriate recovery tool from the wide range of programs of this type offered on the market. Having read this article you would get the most significant parameters of the software and this data can be actually useful for you. The initial step is to look for the persons that have used it and ask them if that is really good. You may find lots of comments on forums. A huge amount of useful data can be found on the official webpage of the product producer or official distributor. It can be very helpful to download the trial version for free and try to recover some info with its assistance. The other really important factor is the existence of the proper support system proposed by the creator, as there may be some complexities with software.

Take into account that information costs a lot, so the cost for the recovery software can be considerable. Some sellers may propose you the software at a low price, so don't be in hurry to accept the any offering searched out in the Internet.

This article is about several tools that can save a Windows administrators you know what in the event of a large scale permissions security problem.

Here is a fictional scenario we can use to illustrate the use of the XCACLS tool. We need to move or copy 50GB worth of data that is comprised of several thousand directories containing hundreds of thousands of small files from one storage system to another. These systems happen to part of a Windows 2000 Domain and permissions are quite granular in definition. We start the replication of that data using a favorite replication or synchronization tool and walk away for the evening. When we return the next day, everything has copied and all looks well. That is until you try to access the data.

The Data Is Copied, But I Cannot Access It: Permissions Security Problem

What you did not know, until just now, is that the root directory of the drive that you copied the data to had the wrong permissions assigned to it. In addition, inheritance was configured such that any data that is placed on the drive is over written with the permissions of the root directory. In this case, it was an old account that no longer existed. Believe it or not, that can happen, and system administrators will know what I am talking about. Now you are left with trying to figure out what to do. Do I format the new drive, change the permissions and inheritance on the root directory so they are correct and start all over again? Do I make the changes on the root drive so they have the correct permissions and wait hours upon hours for the permissions to propagate? No, there is another, very fast way of resolving this issue with XCACLS or another tool called SUBINACL.

XCALCS Quickly Resets Permissions On Directories And Files

Becasue I have limited space in this article, I am going to use XCACLS as the tool to correct this problem. However, in complex permissions structures, you will most likely want to use SUBINACL to fix the issue. I will talk about SUBINACL briefly at the end of the article.

XCACLS as a very fast tool that can set, remove, add, and change permissions on files and directories. For intance, the following command replaces all existing access rights and accounts with that of "dmiller" on the file "file.txt" with read-only access: "xcalcs file.txt /Y /T /G domaindmiller:r". Although that is pretty easy and helpful, what about changing all my directories and files, which I have thousands of, to allow the domaindmiller account to have full access? To do this in a very fast fashion you could execute the following from the root directory of the drive: "for /d %g IN (*.*) DO xcacls "%g" /Y /T /G domaindmiller:f". This will go through every directory, subdirectory, and file and replace the current permissions with dmiller having full access to the object. You'll notice I put "" around the %g in the example. This is not required, but if you have directories that have names with spaces in them you will need to have the "".

What Other Ways Can I Use XCACLS To Change Security Permissions

To give you a few additional handy examples of how you can use this tool take a look at the follow command prompt methods for replacing, updating and removing accounts and permissions from large numbers of directories and files.

The following command replaces all existing access rights an accounts with that of dmiller with read only access rights: for /d %g IN (*.*) DO xcacls "%g" /Y /T /G domaindmiller:r

The following command does not replace existing account permissions, instead, it adds the account, in the example the local admin account, with read only permissions: for /d %g IN (*.*) DO xcacls "%g" /Y /E /T /G administrator:r

The following command removes the account "administrator" permissions from all directories, files, and subdirectories: for /d %g IN (*.*) DO xcacls "%g" /Y /E /T /R administrator

This command should update all the directories and their contents to allow Domain Admins full access: for /d %g IN (*.*) DO xcacls "%g" /Y /T /G "Domain Admins:f"

I did a test on my XP Pro workstation and was able to change the permissions on approximately 10000 directories and files in less 1 minute. On one of my servers I was able to achieve a 500% increase in speed. It is blazingly fast.

SUBINACL Is More Complex But Man Can It Really Save The Day

I cannot go into specifics about this tool in this article but I will tell you what it can do. And again, it does it very very fast. Using the same scenario as above, let's say that you had to fix the permissions on thousands of home directories. With SUBINACL, you can actually go to the original directories and files, use the tool to create what is called a "play file", a text file that contains the right account and permissions from the source files, then use that same file to tell SUBINACL to fix the permissions on the target storage system, the one with the screwed up permissions. It's quite the life saver if you ever find yourself in the type of predicament.

Also check out "CACLS". This command is inherent to Windows XP Professional.

Conclusion

These tools are contained in the Windows 2000 and 2003 server resource tool kit, however several of them also exist native to the Windows XP environment. Check them out if you don't already know about them. Even if you have no use for them right now it may save you hours of hard work and stress in the event of a future permissions problem.

Article Source : Ntfs Data Recovery Software

About Author
Both Mathew Petrenko & Darren Miller are contributors for EditorialToday. The above articles have been edited for relevancy and timeliness. All write-ups, reviews, tips and guides published by EditorialToday.com and its partners or affiliates are for informational purposes only. They should not be used for any legal or any other type of advice. We do not endorse any author, contributor, writer or article posted by our team.

Mathew Petrenko has sinced written about articles on various topics from Yoga Practice, Cars and Escort Services. The crucial problem about is functional and original soft that might save the day. The Internet delivers you an unlimited cho. Mathew Petrenko's top article generates over 301000 views. to your Favourites.

Darren Miller has sinced written about articles on various topics from Computers and The Internet, Finances and Computers and The Internet. . Darren Miller's top article generates over 5400 views. to your Favourites.
EditorialToday Computer Software has 2 sub sections. Such as Software and All Microsoft Softwares. With over 20,000 authors and writers, we are a well known online resource and editorial services site in United Kingdom, Canada & America . Here, we cover all the major topics from self help guide to A Guide to Business, Guide to Finance, Ideas for Marketing, Legal Guide, Lettre De Motivation, Guide to Insurance, Guide to Health, Guide to Medical, Military Service, Guide to Women, Pet Guide, Politics and Policy , Guide to Technology, The Travel Guide, Information on Cars, Entertainment Guide, Family Guide to, Hobbies and Interests, Quality Home Improvement, Arts & Humanities and many more.
About Editorial Today | Contact Us | Terms of Use | Submit an Article | Our Authors