var fDesc=new Array(); fDesc[0] = "ShadowCopy is a simple program that copies all files from one place to another. Other than usual file managers, such as Windows Explorer, it copies all files including locked and open files. This is made possible by using Microsoft's Volume Shadow Services (VSS).

You can easily copy the content of an entire hard disk to another disk. If you copy, for example, C:\ to D:\, you will even be able to boot from that drive. Since ShadowCopy is capable of transferring all the system files you will have an almost exact clone."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }