Technology related solutions, tips, tricks, and other interesting topics
In: Microsoft
2 Mar 2008Robocopy is a Windows Server Resource Kit command line tool that allow you to copy files and folders while maintaining ACLs. In addition it allows you to copy files across networks with fault tolerance capabilities – if the network connection is disrupted, the copy operation will continue where it left off when the connection is restored. Robocopy will also allow you to synchronize local or remote directories and if changes are detected, only the changed bits in a file are copied as opposed to the entire file being copied.
How to use Robocopy to copy the contents of one directory to another while maintaining ACLs:
robocopy c:\pathToSourceDirectory c:\pathToDestinationDirectory /E /SEC
Here is a link to a Microsoft article that talks about the GUI version of Robocopy: Link

This blog is about technology related topics. It will primarily contain problems and solutions to IT problems that I encounter on a day-to-day basis. In addition interesting things I come across either on or off the internet will be posted here as well. I will also include step-by-step tutorials to common tasks people may need to do with their computers.