Velvet Star Monitor

Standout celebrity highlights with iconic style.

news

How Shadow Copy Service works? how it backups the data which we modified

Writer Andrew Mclaughlin

I am Using Shadow Copy to restore my files,and restoring my files. I wonder how does it works.

0

2 Answers

A hardware or software shadow copy provider uses one of the following methods for creating a shadow copy:

Complete copy This method makes a complete copy (called a "full copy" or "clone") of the original volume at a given point in time. This copy is read-only.

Copy-on-write This method does not copy the original volume. Instead, it makes a differential copy by copying all changes (completed write I/O requests) that are made to the volume after a given point in time.

Redirect-on-write This method does not copy the original volume, and it does not make any changes to the original volume after a given point in time. Instead, it makes a differential copy by redirecting all changes to a different volume.

Source:

the way shadow copy works is by placing a marker on the hard drive at the point of a snapshot so that when yu open a file and work on it further, it is actually saved again to a different part of the physical drive. When you do a restore, the older copy of the file is marked as active and the newer version discarded.

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy