CINXE.COM
File Backup for Personal Computers and Laptops of Home and Self-Employed Users
<!DOCTYPE html> <html lang="en"> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <meta name="viewport" content="width=device-width,initial-scale=1" /> <meta http-equiv="content-language" content="en" /> <link rel="stylesheet" type="text/css" href="/includes/en/style.css" /> <link rel="shortcut icon" href="/images/rtt.ico" /> <link rel="icon" type="image/png" href="/images/rtt.png" sizes="64x64"> <style type="text/css"> <!-- .green li {padding-top:9px;} --> </style> <meta name="keywords" content="file backup, data storage, personal computers, self-employed users, restore operating system"/> <meta name="Description" content="How to use R-Drive Image to backup files on personal computers and laptops of home and self-employed users"/> <title>File Backup for Personal Computers and Laptops of Home and Self-Employed Users</title> <style type="text/css"> a:link.link1 {text-decoration: none; color:grey;} a:active.link1 { color:cyan; text-decoration: underline} a:visited.link1 { color:violette; text-decoration: none} a:hover.link1 { text-decoration: underline; color: blue} </style> <script type="text/javascript" charset="utf-8"> // Generic routines function strTrim(str) { return str.replace(/^\s+|\s+$/gm,''); } // Single element class manipulations function _nodeGetClassPos(Node,className) { if (!Node||!Node.className) return -1;if ((!className)||(className.length<=0)) return 0; for(var s=0;true;) { var p=Node.className.indexOf(className,s);if (p<0) return -1; s=p+className.length; if ((p>0)&&(Node.className.charCodeAt(p-1)>32)) continue; if ((s<Node.className.length)&&(Node.className.charCodeAt(s)>32)) continue; return p; } return -1; } function nodeHasClass(Node,className) { return (_nodeGetClassPos(Node,className)>=0); } function nodeAddClass(Node,className) { if ( (!Node) || (!className) || (className.length<=0) || (nodeHasClass(Node,className)) ) return false; if ( (Node.className) && (Node.className.length>0) ) Node.className+=" "; Node.className+=className; return true; } function nodeDelClass(Node,className) { if ( (!Node) || (!Node.className) || (!className) || (className.length<=0) ) return false; var pos=_nodeGetClassPos(Node,className);if (pos<0) return false; var pos2=pos+className.length; if ((pos>0)&&(Node.className.charCodeAt(pos-1)<=32)) {pos--;} else if ((pos2<Node.className.length)&&(Node.className.charCodeAt(pos2)<=32)) {pos2++;} Node.className = Node.className.slice(0,pos) + Node.className.slice(pos2); return true; } function nodeSwitchClass(Node,className) { if ((!Node)||(!className)) return; if (nodeHasClass(Node,className)) { nodeDelClass(Node,className); } else { nodeAddClass(Node,className); } } // Multiple elements class manipulations function nodesHasClass(Nodes,className) { for(var i=0;i<Nodes.length;i++) {if (nodeHasClass(Nodes[i],className)) return true;} return false; } function nodesAddClass(Nodes,className) { for(var i=0;i<Nodes.length;i++) {nodeAddClass(Nodes[i],className);} } function nodesDelClass(Nodes,className) { for(var i=0;i<Nodes.length;i++) {nodeDelClass(Nodes[i],className);} } // Supplement search functions function _findBuild(Selector) { var Search = {Elem:'',Class:'',Type:''}; if (typeof Selector === 'string') Search.Elem=Selector; var pos=Search.Elem.indexOf('[type=');if (pos>=0) { var pos2=Search.Elem.lastIndexOf(']'); if (pos2>pos) { Search.Type=Search.Elem.slice(pos+6,pos2-pos-6); Search.Elem=Search.Elem.slice(0,pos)+Search.Elem.slice(pos2+1); } } pos=Search.Elem.indexOf('.');if (pos>=0) { Search.Class=Search.Elem.slice(pos+1); Search.Elem=Search.Elem.slice(0,pos); } Search.Elem=Search.Elem.toUpperCase(); return Search; } function _findDoesNodeMatch(Search,Node) { if ((!Node)||(Node.nodeType!=1)) return false; var bMatch=true; if ( (Search.Elem!="") && ((!Node.tagName)||(Node.tagName!=Search.Elem)) ) {bMatch=false;} if ( (Search.Type!="") && ((!Node.type)||(Node.type!=Search.Elem)) ) {bMatch=false;} if ( (Search.Class!="") && (!nodeHasClass(Node,Search.Class)) ) {bMatch=false;} return bMatch; } // Search for nodes, Selector = 'element.class[type=typename]', each part can be omited, i.e. '.class' or 'element[type=typename]' for example function nodeFindChildren(Node,Selector) { // Search for matched children nodes, recursively var res = [];if (!Node) return res; var Search = (typeof Selector === 'object')?Selector:_findBuild(Selector); var Children = Node.childNodes; for(var i=0;i<Children.length;i++) { if (Children[i].nodeType!=1) continue; if (_findDoesNodeMatch(Search,Children[i])) {res.push(Children[i]);} res=res.concat(nodeFindChildren(Children[i],Search)); } return res; } function nodeFindDirectChildren(Node,Selector) { // Search for matched children nodes, only children of this node var res = [];if (!Node) return res; var Search = _findBuild(Selector); var Children = Node.childNodes; for(var i=0;i<Children.length;i++) { if (Children[i].nodeType!=1) continue; if (_findDoesNodeMatch(Search,Children[i])) {res.push(Children[i]);} } return res; } function nodeFindParent(Node,Selector) { // Search for first matched parent node if (!Node) return null; var Search = _findBuild(Selector); for(var Res=Node.parentNode;Res;Res=Res.parentNode) { if (_findDoesNodeMatch(Search,Res)) return Res; } return null; } // Check if Node have specified Child on any level function hasSpecifiedChild(Node,Child) { if (!Node) return false; var Children = Node.childNodes; for(var i=0;i<Children.length;i++) { if (Children[i].nodeType!=1) continue; if (Children[i] === Child) return true; if (hasSpecifiedChild(Children[i],Child)) return true; } return false; } </script><script type="text/javascript" charset="utf-8"> function onImgBigClose(Node) { if (Node) Node.parentNode.removeChild(Node); } function onImgBigShow(Node) { if (!Node) return; var strImgSrc=Node.getAttribute("big-src"); if (!strImgSrc) { strImgSrc=Node.getAttribute("src");if (!strImgSrc) return; if (nodeHasClass(Node,"big")) { var p=strImgSrc.lastIndexOf(".");if (p<=0) return; strImgSrc=strImgSrc.slice(0,p)+"_big"+strImgSrc.slice(p); } } var strImgAlt=Node.getAttribute("title"); if (!strImgAlt) {strImgAlt=Node.getAttribute("alt");} var ImgModal=document.createElement("div");if (!ImgModal) return; ImgModal.className="img-big-modal"; ImgModal.id="img-big-modal"; var ImgClose=document.createElement("span"); var ImgImg=document.createElement("img"); var ImgCaption=document.createElement("div"); if (!ImgClose || !ImgImg || !ImgCaption) return; ImgClose.innerHTML="×"; ImgClose.onclick = function(){onImgBigClose(this.parentNode);} ImgModal.appendChild(ImgClose); ImgImg.setAttribute("src",strImgSrc); ImgModal.appendChild(ImgImg); if (strImgAlt) {ImgCaption.innerText=strImgAlt;} ImgModal.appendChild(ImgCaption); if (ImgModal.addEventListener) { ImgModal.addEventListener('mouseup',function(e) { var Trg=e.target;if (!Trg) return; var ImgModal=document.getElementById('img-big-modal');if (!ImgModal) return; if (Trg === ImgModal) onImgBigClose(ImgModal); }); } var InsertBefore=Node.nextSibling; if (InsertBefore) {Node.parentNode.insertBefore(ImgModal,InsertBefore);} else {Node.parentNode.appendChild(ImgModal);} } function onImgBigShowInit() { var aImgBig = nodeFindChildren(document,'img.big'); aImgBig = aImgBig.concat(nodeFindChildren(document,'img.rsz')); for(var i=0;i<aImgBig.length;i++) {aImgBig[i].onclick = function(){onImgBigShow(this);};} if (document.addEventListener) { document.addEventListener('keyup',function(e) { if (e.keyCode != 27) return; onImgBigClose(document.getElementById('img-big-modal')); }); } } </script> </head> <body> <div id="root"> <div> <div style="overflow-x:hidden;"> <div id="hdr-wrapper" class="hdr-wrapper"> <div id="hdr-hdr" class="section hdr-hdr no-langs"> <div class="hdr-logo"> <a href="https://www.r-tt.com/" title="R-Tools Technology Inc."> <img src="/images/nav/rtt-logo.png" alt="R-Tools Technology Inc." width="225" height="85" /> </a> </div> <div class="hdr-search-container"> <form class="hdr-search-form" name="search_form" action="/scripts/search" method="post" onsubmit="return doSearch(document.search_form)"> <input type="hidden" name="config" value="../../../r-tt/private/config/ssserver.en" /> <div class="hdr-search-row"> <span class="hdr-search-icon" onclick="doSearch(document.search_form)"></span> <input type="text" name="QUERY" class="hdr-search-input" value="Search..." onfocus="onSearchFocus(document.search_form)" /> </div> </form> </div> <script type="text/javascript" charset="utf-8"> function onSearchFocus(F) { if (F.QUERY.value == "Search...") { F.QUERY.value=""; F.QUERY.style.color = "#404040"; } return true; } function doSearch(F) { if (F.QUERY.value == "Search...") {F.QUERY.value="";} if (F.QUERY.value == "") {alert("Please specify search pattern");F.QUERY.focus();return false;} return true; } </script> <div class="hdr-info"> <div> We are committed to providing fast, efficient, and affordable software solutions that set new standards in the software development industry. </div> </div> <div class="clearwoflex"></div> <div class="hdr-menu"> <div class="menu-container" id="menu-container"> <span class="menu-button"> <span class="menu-button-open"></span> <span class="menu-button-close"></span> </span> <a href="https://www.r-tt.com/" class="menu-logo" title="R-Tools Technology Inc."> <img src="/images/nav/rtt-logo.png" alt="R-Tools Technology Inc." width="225" height="85" /> </a> <ul class="menu-main" id="menu-main"> <li class="menu-item"><div class="menu-item-wrap"> <span class="menu-title"> <span class="menu-icon-left"></span> PRODUCTS <span class="menu-icon-right"></span> </span> <div class="menu-dd"> <div class="menu-dd-cont"> <div class="menu-dd-title"> FREEWARE </div> <div class="menu-dd-items"> <ul class="menu-dd-ul"> <li> <a href="https://www.r-undelete.com/">R-Undelete Home</a> </li> <li> <a href="https://www.r-undelete.com/free_photo_recovery/">R-Photo</a> </li> <li> <a href="https://www.r-studio.com/free-linux-recovery/">R-Linux</a> </li> <li> <a href="https://www.r-wipe.com/#lite">R-Wipe & Clean Lite</a> </li> </ul> </div> </div> <div class="menu-dd-cont"> <div class="menu-dd-title"> FOR COMMERCIAL USE </div> <div class="menu-dd-items"> <ul class="menu-dd-ul"> <li> <a href="https://www.r-studio.com/Data_Recovery_Technician.shtml"> R-Studio Technician for Data Recovery Services </a> </li> <li> <a href="https://www.drive-image.com/Drive_Image_Licensing.shtml#commercial"> R-Drive Image for Backup and Deployment Services </a> </li> </ul> </div> </div> <div class="menu-dd-cont"> <div class="menu-dd-title"> FOR PERSONAL AND BUSINESS USE </div> <div class="menu-dd-items"> <div class="menu-dd-cols"> <div class="menu-dd-col-title"> <a href="https://www.r-studio.com/data-recovery-software/"> PRO Data Recovery: </a> </div> <div class="menu-dd-col-ul"><ul class="menu-dd-ul"> <li> <a href="https://www.r-studio.com/">R-Studio for Windows</a> </li> <li> <a href="https://www.r-studio.com/data_recovery_macintosh/">R-Studio for Mac</a> </li> <li> <a href="https://www.r-studio.com/data_recovery_linux/">R-Studio for Linux</a> </li> </ul></div> <div class="clearthis"></div> </div> <div class="menu-dd-cols"> <div class="menu-dd-col-title"> Backup and System Restore: </div> <div class="menu-dd-col-ul"><ul class="menu-dd-ul"> <li> <a href="https://www.drive-image.com/">R-Drive Image</a> </li> <li> <a href="https://www.drive-image.com/Drive_Image_Licensing.shtml#technician">R-Drive Image Technician</a> </li> </ul></div> <div class="clearthis"></div> </div> <div class="menu-dd-cols"> <div class="menu-dd-col-title"> PC Privacy and Security: </div> <div class="menu-dd-col-ul"><ul class="menu-dd-ul"> <li> <a href="https://www.r-wipe.com/">R-Wipe & Clean</a> </li> <li> <a href="https://www.r-wipe.com/#mac">R-Wipe & Clean for Mac</a> </li> </ul></div> <div class="clearthis"></div> </div> </div> </div> </div> </div></li> <li class="menu-item"><div class="menu-item-wrap"> <span class="menu-title"> <span class="menu-icon-left"></span> <span class="alt-tr-ru-1">BUY ONLINE</span> <span class="menu-icon-right"></span> </span> <div class="menu-dd"> <div class="menu-dd-cont"> <div class="menu-dd-items"> <ul class="menu-dd-ul"> <li> <a href="https://www.r-tt.com/VolumeLicensing.shtml" class="alt-tr-ru-1">Quote</a> </li> <li> <a href="https://www.r-tt.com/GetInvoice.shtml">Get Invoice</a> </li> <li> <a href="https://www.r-tt.com/FAQ.shtml">Sales FAQ</a> </li> <li> <a href="https://www.r-tt.com/BuyOnLine.shtml">Sales Policy</a> </li> </ul> </div> </div> </div> </div></li> <li class="menu-item"><div class="menu-item-wrap"> <span class="menu-title"> <span class="menu-icon-left"></span> SUPPORT <span class="menu-icon-right"></span> </span> <div class="menu-dd"> <div class="menu-dd-cont"> <div class="menu-dd-items"> <ul class="menu-dd-ul"> <li> <a href="https://www.r-tt.com/TechnicalSupport.shtml">Technical Support</a> </li> <li> <a href="https://www.r-tt.com/PurchasingRequest.shtml">Customer Support</a> </li> <li> <a href="https://www.r-studio.com/File_Recovery_FAQ.shtml">FAQ</a> </li> <li> <a href="https://www.r-tt.com/Knowledge-Base.html">Knowledge Base</a> </li> <li> <a rel="noopener" target="_blank" href="https://forum.r-tt.com/">R-TT Forum</a> </li> </ul> </div> </div> </div> </div></li> <li class="menu-item"><div class="menu-item-wrap"> <span class="menu-title"> <span class="menu-icon-left"></span> DISTRIBUTION <span class="menu-icon-right"></span> </span> <div class="menu-dd"> <div class="menu-dd-cont"> <div class="menu-dd-items"> <ul class="menu-dd-ul"> <li> <a href="https://www.r-tt.com/Affiliate_Program.shtml">Affiliate Program</a> </li> <li> <a href="https://www.r-tt.com/Resellers.shtml">Resellers</a> </li> <li> <a href="https://www.r-tt.com/Distribution.shtml">Regional Distributors</a> </li> <li> <a target="_blank" rel="noopener" href="https://secure.r-tt.com/distributor/login/">Login</a> </li> </ul> </div> </div> </div> </div></li> <li class="menu-item"><div class="menu-item-wrap"> <span class="menu-title"> <span class="menu-icon-spare"></span> <a href="https://secure.r-tt.com/UserConsole.shtml">MY ORDER</a> </span> </div></li> </ul> </div> </div> <div class="clearwoflex"></div> </div> </div> <div> <div class="row-blue row-section"><div class="section"><ul class="page-title"> <li> <div class="page-title-main"> File Backup for Personal Computers and Laptops of Home and Self-Employed Users </div></li> </ul></div></div> <div class="row-section page-height-info"><div class="section"> <div class="social-share"> <a target="_blank" href="https://www.facebook.com/sharer.php?u=https://www.drive-image.com/backup-files-personal-computers-laptops-of-home-self-employed-users.html" title="Share on Facebook"><img src="/images/social/fb-share32.png"/></a> <a target="_blank" href="https://twitter.com/intent/tweet?url=https://www.drive-image.com/backup-files-personal-computers-laptops-of-home-self-employed-users.html&text=File%20Backup%20for%20Personal%20Computers%20and%20Laptops%20of%20Home%20and%20Self-Employed%20Users" title="Share on Twitter"><img src="/images/social/tw-share32.png"/></a> <a target="_blank" href="http://pinterest.com/pin/create/button/?url=https://www.drive-image.com/backup-files-personal-computers-laptops-of-home-self-employed-users.html&description=File%20Backup%20for%20Personal%20Computers%20and%20Laptops%20of%20Home%20and%20Self-Employed%20Users" title="Share on Pinterest"><img src="/images/social/pt-share32.png"/></a> <a target="_blank" href="http://www.reddit.com/submit?url=https://www.drive-image.com/backup-files-personal-computers-laptops-of-home-self-employed-users.html&title=File%20Backup%20for%20Personal%20Computers%20and%20Laptops%20of%20Home%20and%20Self-Employed%20Users" title="Share on Reddit"><img src="/images/social/reddit-share32.png"/></a> </div> <p class="text"> All computers and file storage devices eventually fail. This often leads to losing files, which may be more valuable than the computer itself. Recovering these files can be expensive and time-consuming, especially if the hardware is damaged. Sometimes, the files can't be recovered at all. </p> <p class="text"> You might also need to restore your entire operating system. This is usually a lengthy process if you have to start from scratch, especially if you need to reinstall a bunch of programs and reapply settings. </p> <p class="text"> This is especially important for home users who don't have many resources for full system recovery and have to do it themselves instead of calling expensive IT professionals. Their files are important and often irreplaceable, like family photos and videos, unique artwork, and similar stuff. </p> <p class="text"> IT professionals say a backup a day keeps data recovery away. It's much easier and cheaper to invest in file backup software and storage than to deal with emergency data recovery. This article will give you detailed suggestions on how to create a data backup plan for your personal computer and implement it using our disk imaging and data backup software <a rel="noopener" target="_blank" href="https://www.drive-image.com/">R-Drive Image</a>. </p> <p class="text"> We've published some articles in our <a rel="noopener" target="_blank" href="https://www.r-tt.com/Knowledge-Base.html">Knowledge Base</a> that describe creating data backup plans for small business servers (for example <a rel="noopener" target="_blank" href="https://www.drive-image.com/data-backup-plan.html">Creating a Data Consistent, Space Efficient Data Backup Plan for a Small Business Server</a>), but they might be too complicated for home users. </p> <p> Another difference between business servers and personal computers is what kind of data needs to be backed up. Business servers usually contain complex data structures like databases, so backing up the entire hard drive is often the best option. Personal computers, on the other hand, generally have separate files, so regularly backing up only those files would be better. </p> <p class="text"> There are also some restrictions on where to store backup files. They're limited to external USB storage devices and maybe a NAS (Network Attached Storage) device. You can also use various cloud services. They're reliable, well-protected, and available from almost anywhere, plus they might be free for a limited amount of storage space (15 GB for Google Drive, for example). </p> <p class="text"> When we say "a personal use computer" we mean two very different types of computers, and therefore they need different backup plans. </p> <p class="text"> Click the plan you think most suitable to you. You may adapt these plans to your specific needs. </p> </div></div> <div class="feature-tabs feature-tabs-wide"><div class="section"> <div class="feature-tabs-body"><ul> <li id="tab-laptop" class="tab-active"><span class="product-text">A backup plan for a laptop </span></li> <li id="tab-desktop"><span class="product-text">A backup plan for a desktop PC s</span></li> </ul></div> </div></div> <div class="row-lgray row-section"><div class="section"> <div id="panel-laptop"> <p class="text"> <b>A backup plan for a laptop</b><br/> Laptops like these are used irregularly, so it's pretty hard to come up with a specific pattern for automatic data backups that would work for most home users. That's why backup tasks will be started manually. </p> <p class="text"> We'll use an external USB drive as the main place to store backup files. It will also protect against various ransomware. Since it's good to have several backups in different locations, we'll use a cloud service for replications. Cloud services are reliable, well-protected, and available from almost anywhere, plus they might be free for a limited amount of storage space (15 GB for Google Drive, for example). </p> <p class="text"> Taking all above into consideration we can now start creating our exemplary backup plan. </p> <ul class="green"> <li><b>Our system:</b> a laptop with a 128GB SSD, BitLocker protection is on, Windows 10 as its OS.</li> <li><b>Backup tasks:</b> Personal files backup: every time you're done using the computer. The entire disk: Once a week and before and after major Windows updates.</li> <li><b>Places to store backup files:</b> Personal files: a detachable external USB drive and Google Drive as a replication. The system disk: the detachable external USB drive. Google Drive can also be used if your account has enough storage space (not suitable for free accounts).</li> <li><b>Backup software: </b><a rel="noopener" target="_blank" href="https://www.drive-image.com/">R-Drive Image Standalone</a>. It has all the features we need and more, and it's inexpensive. You can try it for free for a month, with all its features intact.</li> </ul> <p class="text"> <b>Task 1: User files backup</b></br> 1. Click the Task and Scripts button.<br/> <img class="big" style="text-align: center" src="/Disk_Image_Backup_Articles/Backup-of-personal-files/Backup-of-personal-files_01.png" alt="R-Drive Image Main panel" height="442" width="589"><br/> <i>Click image to enlarge</i> </p> <p class="text"> 2. Select Task to create image from files.<br/> <img class="big" style="text-align: center" src="/Disk_Image_Backup_Articles/Backup-of-personal-files/Backup-of-personal-files_02.png" alt="Task to create image from files" height="442" width="588"><br/> <i>Click image to enlarge</i> </p> <p class="text"> 3. Select the folders and subfolders/files you want to back up.<br/> <img class="big" style="text-align: center" src="/Disk_Image_Backup_Articles/Backup-of-personal-files/Backup-of-personal-files_03.png" alt="Folders and files to backup" height="442" width="589"><br/> <i>Click image to enlarge</i> </p> <p class="text"> You only need to do this once; you won't have to do it again each time you run this task. </p> <p class="text"> Then click the Next button. </p> <p class="text"> 4. Click the Connect to cloud button to establish a connection with Google Drive.<br/> <img class="big" style="text-align: center" src="/Disk_Image_Backup_Articles/Backup-of-personal-files/Backup-of-personal-files_04.png" alt="Connect to cloud button" height="442" width="589"><br/> <i>Click image to enlarge</i> </p> <p class="text"> 5. Click Google Drive on the Connect to cloud dialog box.<br/> <img class="big" style="text-align: center" src="/Disk_Image_Backup_Articles/Backup-of-personal-files/Backup-of-personal-files_05.png" alt="Connect to cloud button" height="442" width="589"><br/> <i>Click image to enlarge</i> </p> <p class="text"> Your default browser will open and connect to the Google site. </p> <p class="text"> 6. Select your Google account<br/> <img class="big" style="text-align: center" src="/Disk_Image_Backup_Articles/Backup-of-personal-files/Backup-of-personal-files_06.png" alt="Sign in with Google" height="491" width="685"><br/> <i>Click image to enlarge</i> </p> <p class="text"> and log in. </p> <p class="text"> 7. Look through the permissions you will grant to R-Drive Image<br/> <img class="big" style="text-align: center" src="/Disk_Image_Backup_Articles/Backup-of-personal-files/Backup-of-personal-files_07.png" alt="Google permissions" height="491" width="685"><br/> <i>Click image to enlarge</i> </p> <p class="text"> and click the Continue button. </p> <p class="text"> 8. Verify that R-Drive Image is successfully authorized<br/> <img class="big" style="text-align: center" src="/Disk_Image_Backup_Articles/Backup-of-personal-files/Backup-of-personal-files_08.png" alt="Google authorized" height="491" width="685"><br/> <i>Click image to enlarge</i> </p> <p class="text"> and close the browser. </p> <p class="text"> 9. Make sure the connection to Google Drive is active.<br/> <img class="big" style="text-align: center" src="/Disk_Image_Backup_Articles/Backup-of-personal-files/Backup-of-personal-files_09.png" alt="Google drive connection" height="442" width="589"><br/> <i>Click image to enlarge</i> </p> <p class="text"> 10. Select the external USB disk (D: Backup) for the Main copy folder, and choose the backup type for files.<br/> <img class="big" style="text-align: center" src="/Disk_Image_Backup_Articles/Backup-of-personal-files/Backup-of-personal-files_10.png" alt="Main copy folder" height="442" width="589"><br/> <i>Click image to enlarge</i> </p> <p class="text"> You can select two backup types: an rdi image file and Differential files copy. </p> <p class="text"> The rdi image file can be encrypted and mounted to your system as a read-only logical disk to extract only necessary files, but only R-Drive Image can work with it. Differential files copy doesn't require R-Drive Image to access files, but it's less secure as files are stored as they are. We believe that modern external disks and Google Drive have strong enough security measures for ordinary user files. </p> <p class="text"> Then click the Options button. </p> <p class="text"> 11. Switch to the Replications tab on the Options dialog box,<br/> <img class="big" style="text-align: center" src="/Disk_Image_Backup_Articles/Backup-of-personal-files/Backup-of-personal-files_11.png" alt="Replications options" height="489" width="651"><br/> <i>Click image to enlarge</i> </p> <p class="text"> then click the Add replications button, select Google_Drive, and click the Open button. </p> <p class="text"> 12. Check that the replication path has appeared on the Replication tab.<br/> <img class="big" style="text-align: center" src="/Disk_Image_Backup_Articles/Backup-of-personal-files/Backup-of-personal-files_12.png" alt="Replications path" height="475" width="588"><br/> <i>Click image to enlarge</i> </p> <p class="text"> Then you can go to the Copy options tab and specify any necessary parameters.<br/> <img class="big" style="text-align: center" src="/Disk_Image_Backup_Articles/Backup-of-personal-files/Backup-of-personal-files_12-1.png" alt="Copy options tab" height="475" width="601"><br/> <i>Click image to enlarge</i> </p> <p class="text"> Select Shutdown computer when completed if you want to turn your computer off when the task is finished. </p> <p class="text"> You can read more about the other options in R-Drive Image help: <a rel="noopener" target="_blank" href="https://www.drive-image.com/DriveImage_Help/copy-files-to-a-folder.htm">Copy Files to a Folder</a>. </p> <p class="text"> Then click the OK button to return to the Select the destination for the new image panel. </p> <p class="text"> Click the OK button on this panel.<br/> <img class="big" style="text-align: center" src="/Disk_Image_Backup_Articles/Backup-of-personal-files/Backup-of-personal-files_13.png" alt="Select the destination for the new image" height="442" width="589"><br/> <i>Click image to enlarge</i> </p> <p class="text"> 14. Select Manually in the Perform this task option on the Task execution schedule panel,<br/> <img class="big" style="text-align: center" src="/Disk_Image_Backup_Articles/Backup-of-personal-files/Backup-of-personal-files_14.png" alt="Task execution schedule panel" height="442" width="589"><br/> <i>Click image to enlarge</i> </p> <p class="text"> then click the Save button. </p> <p class="text"> A new task will appear on the Tasks and Scripts panel.<br/> <img class="big" style="text-align: center" src="/Disk_Image_Backup_Articles/Backup-of-personal-files/Backup-of-personal-files_15.png" alt="Tasks and Scripts panel" height="442" width="589"><br/> <i>Click image to enlarge</i> </p> <p class="text"> Now you can start the task manually. </p> <p class="text"> 1. Right-click the task and select Execute now.<br/> <img class="big" style="text-align: center" src="/Disk_Image_Backup_Articles/Backup-of-personal-files/Backup-of-personal-files_16.png" alt="Manual execution of a task" height="442" width="589"><br/> <i>Click image to enlarge</i> </p> <p class="text"> R-Drive Image will start executing this task, showing its progress.<br/> <img class="big" style="text-align: center" src="/Disk_Image_Backup_Articles/Backup-of-personal-files/Backup-of-personal-files_17.png" alt="Task execution progress" height="442" width="589"><br/> <i>Click image to enlarge</i> </p> <p class="text"> R-Drive Image will show the result when the task is completed.<br/> <img class="big" style="text-align: center" src="/Disk_Image_Backup_Articles/Backup-of-personal-files/Backup-of-personal-files_18.png" alt="Task execution result" height="442" width="589"><br/> <i>Click image to enlarge</i> </p> <p class="text"> Please note that uploading data to Google Drive may take a while if your internet is not fast enough. </p> <p class="text"> Your computer will turn off automatically if you selected the Shutdown computer when completed option. </p> <p class="text"> Files on the disk when the task is successfully completed.<br/> <img class="big" style="text-align: center" src="/Disk_Image_Backup_Articles/Backup-of-personal-files/Backup-of-personal-files_19.png" alt="Files on the disk" height="252" width="571"><br/> <i>Click image to enlarge</i> </p> <p class="text"> And on Google Drive<br/> <img class="big" style="text-align: center" src="/Disk_Image_Backup_Articles/Backup-of-personal-files/Backup-of-personal-files_20.png" alt="Files on Google Drive" height="491" width="837"><br/> <i>Click image to enlarge</i> </p> <p class="text"> Note that there are no folders on Google Drive. </p> <p class="text"> When you start the task next time, restore the connection to Google Drive by going to Restore Image, then Tasks and Scripts, and execute the task when the connection has been restored. </p> <p class="text"> <b>Task 2: Backup of the entire system disk</b><br/> 1. Click the Tasks and Scripts button on the Main panel, then click Create task on the Tasks and Scripts panel.<br/> <img class="big" style="text-align: center" src="/Disk_Image_Backup_Articles/Backup-of-personal-files/Backup-of-personal-files_21.png" alt="Creating another backup task" height="442" width="589"><br/> <i>Click image to enlarge</i> </p> <p class="text"> 2. Select the entire hard disk on the Select disk(s) to create image from panel.<br/> <img class="big" style="text-align: center" src="/Disk_Image_Backup_Articles/Backup-of-personal-files/Backup-of-personal-files_22.png" alt="Select disk(s) to create image from panel" height="442" width="589"><br/> <i>Click image to enlarge</i><br/> You need to back up the entire hard drive because it contains the System partition locked by BitLocker. </p> <p class="text"> 3. Select the destination for the new image, backup type (R-Drive Image format - default),<br/> <img class="big" style="text-align: center" src="/Disk_Image_Backup_Articles/Backup-of-personal-files/Backup-of-personal-files_23.png" alt="Image destination" height="442" width="589"><br/> <i>Click image to enlarge</i><br/> and click the Next button. </p> <p class="text"> 4. Select the Rotations options on its panel.<br/> <img class="big" style="text-align: center" src="/Disk_Image_Backup_Articles/Backup-of-personal-files/Backup-of-personal-files_24.png" alt="Rotations options" height="442" width="589"><br/> <i>Click image to enlarge</i> </p> <p class="text"> A new full image will be created and the old one deleted every time this task is started. You can change this setting if you want to keep several old images on the disk. See R-Drive Image online help for more details: <a rel="noopener" target="_blank" href="https://www.drive-image.com/DriveImage_Help/simple-rotation-schemes.htm">Simple Rotation Schemes</a>. </p> <p class="text"> 5. Go to the Image options tab and specify any necessary parameters.<br/> <img class="big" style="text-align: center" src="/Disk_Image_Backup_Articles/Backup-of-personal-files/Backup-of-personal-files_24-1.png" alt="Image options tab" height="490" width="620"><br/> <i>Click image to enlarge</i> </p> <p class="text"> Select Shutdown computer when completed if you want to turn your computer off when the task is finished. You can read more about the other options in R-Drive Image help: <a rel="noopener" target="_blank" href="https://www.drive-image.com/DriveImage_Help/createanimage.htm">Create an Image</a>. </p> <p class="text"> 6. Select Manually in the Perform this task option on the Task execution schedule tab,<br/> <img class="big" style="text-align: center" src="/Disk_Image_Backup_Articles/Backup-of-personal-files/Backup-of-personal-files_25.png" alt="Task execution schedule tab" height="442" width="589"><br/> <i>Click image to enlarge</i><br/> then click the Save button. </p> <p class="text"> A new task will appear on the Task and Scripts panel.<br/> <img class="big" style="text-align: center" src="/Disk_Image_Backup_Articles/Backup-of-personal-files/Backup-of-personal-files_26.png" alt="Task and Scripts panel" height="442" width="589"><br/> <i>Click image to enlarge</i> </p> <p class="text"> Now it's time to start the task manually. </p> <p class="text"> 1. Right-click the task and select Execute now.<br/> <img class="big" style="text-align: center" src="/Disk_Image_Backup_Articles/Backup-of-personal-files/Backup-of-personal-files_27.png" alt="Manual task execution" height="443" width="588"><br/> <i>Click image to enlarge</i> </p> <p class="text"> R-Drive Image will start executing this task, showing its progress.<br/> <img class="big" style="text-align: center" src="/Disk_Image_Backup_Articles/Backup-of-personal-files/Backup-of-personal-files_28.png" alt="Task execution progress" height="443" width="588"><br/> <i>Click image to enlarge</i> </p> <p class="text"> R-Drive Image will show the result when the task is completed.<br/> <img class="big" style="text-align: center" src="/Disk_Image_Backup_Articles/Backup-of-personal-files/Backup-of-personal-files_29.png" alt="Task execution result" height="443" width="588"><br/> <i>Click image to enlarge</i> </p> <p class="text"> Your computer will turn off automatically if you selected the Shutdown computer when completed option. </p> <p class="text"> Files on the disk when the task is successfully completed.<br/> <img class="big" style="text-align: center" src="/Disk_Image_Backup_Articles/Backup-of-personal-files/Backup-of-personal-files_30.png" alt="Files on the disk" height="252" width="571"><br/> <i>Click image to enlarge</i> </p> <p class="text"> Note that you'll need R-Drive Startup version to restore the system disk. Read more in the R-Drive Image help page: <a rel="noopener" target="_blank" href="https://www.drive-image.com/DriveImage_Help/advanceddiskactions.htm">R-Drive Startup version</a> </p> </div> <div id="panel-desktop"> <p class="text"> <b>A backup plan for a desktop PC</b><br/> This computer is usually part of a home network, maybe with a <a rel="noopener" target="_blank" href="https://www.r-studio.com/What-is-NAS-Device.html">NAS device</a>. We'll use the NAS as the place for backup copies. The computer is always on and sleeps when idle, so we can set up automatic backups for some tasks. </p> <ul class="green"> <li><b>Our system:</b> a desktop PC with a 512 GB SSD divided into two parts (Disk C:, System, 148 GB and D:, Data, 316 GB), plus 2 system reserved partitions. User files are stored on Disk D:, and it runs Windows 10.<br/> <b>Important:</b> You'll need to change some settings in Windows so it can wake up and start a scheduled task. Go to Control Panel -> Hardware and Sound -> Power Options -> Change Plan Settings -> Change Advanced Power Settings -> Sleep -> Allow Wake Timers and select Enable.<br/> <img class="big" style="text-align: center" src="/Disk_Image_Backup_Articles/Backup-of-personal-files/Backup-of-personal-files_31.png" alt="Advanced Power options" height="309" width="283"><br/> <i>Click image to enlarge</i></li> <li><b>Backup tasks:</b> Work files backup: manually every time you're done working. Game files backup: manually every time you finish playing a game. System disk: automatically every day at 4 AM, a full image every Sunday, differential images on other days.</li> <li><b>Places to store backup files:</b> An external USB DAS (Direct-Access Storage) device as the main backup, with a copy on the NAS device.<br/><br/> Work and game files aren't usually very large, so we'll use differential backups to save space. </li> <li><b>Backup software:</b><a rel="noopener" target="_blank" href="https://www.drive-image.com/"> R-Drive Image Standalone.</a> It has all the features we need and more, and it's inexpensive. You can try it for free for a month, with all its features intact.</li> </ul> <p class="text"> With all this in mind, we can now create our example backup plan. </p> <p class="text"> <b>Task 1: Work files backup</b><br/> 1. Click the Task and Scripts button.<br/> <img class="big" style="text-align: center" src="/Disk_Image_Backup_Articles/Backup-of-personal-files/Backup-of-personal-files_01.png" alt="R-Drive Image Main panel" height="442" width="589"><br/> <i>Click image to enlarge</i> </p> <p class="text"> 2. Select Task to create an image from files.<br/> <img class="big" style="text-align: center" src="/Disk_Image_Backup_Articles/Backup-of-personal-files/Backup-of-personal-files_33.png" alt="Task to create an image from files" height="442" width="589"><br/> <i>Click image to enlarge</i><br/> Then click the Next button. </p> <p class="text"> 3. Select the folders, subfolders, and/or files you want to back up. <br/> <img class="big" style="text-align: center" src="/Disk_Image_Backup_Articles/Backup-of-personal-files/Backup-of-personal-files_34.png" alt="Files to backup" height="442" width="589"><br/> <i>Click image to enlarge</i></br> You only need to do this once. Then click the Next button. </p> <p class="text"> 4. Select the external USB DAS device (E: Backup) for the Main copy folder, and choose the backup type for files.<br/> <img class="big" style="text-align: center" src="/Disk_Image_Backup_Articles/Backup-of-personal-files/Backup-of-personal-files_35.png" alt="Main copy folder" height="502" width="562"><br/> <i>Click image to enlarge</i></br> Then click the Options button. </p> <p class="text"> 5. Go to the Replications tab and click Add replication.<br/> <img class="big" style="text-align: center" src="/Disk_Image_Backup_Articles/Backup-of-personal-files/Backup-of-personal-files_36.png" alt="Main copy folder" height="475" width="588"><br/> <i>Click image to enlarge</i> </p> <p class="text"> 6. Enter the location for the backup copy (\NAS-Device\NAS\Files) and click the Select Folder button.<br/> <img class="big" style="text-align: center" src="/Disk_Image_Backup_Articles/Backup-of-personal-files/Backup-of-personal-files_37.png" alt="Replication location" height="415" width="662"><br/> <i>Click image to enlarge</i> </p> <p class="text"> 7. Verify that the replication address is correct<br/> <img class="big" style="text-align: center" src="/Disk_Image_Backup_Articles/Backup-of-personal-files/Backup-of-personal-files_38.png" alt="Replications tab" height="475" width="588"><br/> <i>Click image to enlarge</i><br/> and go to the Copy options tab. </p> <p class="text"> 8. Make sure the Shutdown when completed option is not selected<br/> <img class="big" style="text-align: center" src="/Disk_Image_Backup_Articles/Backup-of-personal-files/Backup-of-personal-files_39.png" alt="Copy options tab" height="475" width="588"><br/> <i>Click image to enlarge</i><br/> and click OK to return to the Select the destination for the new image panel. </p> <p class="text"> 9. Click the Next button. <br/> <img class="big" style="text-align: center" src="/Disk_Image_Backup_Articles/Backup-of-personal-files/Backup-of-personal-files_40.png" alt="Select the destination for the new image panel" height="443" width="561"><br/> <i>Click image to enlarge</i><br/> </p> <p class="text"> 10. Select Perform this task Manually and click the Save button.<br/> <img class="big" style="text-align: center" src="/Disk_Image_Backup_Articles/Backup-of-personal-files/Backup-of-personal-files_41.png" alt="Task execution schedule panel" height="443" width="561"><br/> <i>Click image to enlarge</i><br/> </p> <p class="text"> A new task will appear.<br/> <img class="big" style="text-align: center" src="/Disk_Image_Backup_Articles/Backup-of-personal-files/Backup-of-personal-files_42.png" alt="Tasks and Scripts panel" height="443" width="561"><br/> <i>Click image to enlarge</i><br/> </p> <p class="text"> 11. Right-click the task and select Execute now.<br/> <img class="big" style="text-align: center" src="/Disk_Image_Backup_Articles/Backup-of-personal-files/Backup-of-personal-files_43.png" alt="Task execution" height="443" width="561"><br/> <i>Click image to enlarge</i><br/> </p> <p class="text"> R-Drive Image will start the task and show its progress.<br/> <img class="big" style="text-align: center" src="/Disk_Image_Backup_Articles/Backup-of-personal-files/Backup-of-personal-files_44.png" alt="Task execution progress" height="443" width="561"><br/> <i>Click image to enlarge</i><br/> </p> <p class="text"> You can leave your computer; the task will finish, and then the computer will go to sleep. </p> <p class="text"> When you wake up your computer and open R-Drive Image, it will show the task results.<br/> <img class="big" style="text-align: center" src="/Disk_Image_Backup_Articles/Backup-of-personal-files/Backup-of-personal-files_45.png" alt="Task execution result" height="442" width="561"><br/> <i>Click image to enlarge</i><br/> </p> <p class="text"> You can see the backed-up files on the DAS and NAS devices. </p> <p class="text"> DAS device<br/> <img class="big" style="text-align: center" src="/Disk_Image_Backup_Articles/Backup-of-personal-files/Backup-of-personal-files_46.png" alt="DAS device" height="283" width="574"><br/> <i>Click image to enlarge</i><br/> </p> <p class="text"> NAS device<br/> <img class="big" style="text-align: center" src="/Disk_Image_Backup_Articles/Backup-of-personal-files/Backup-of-personal-files_46-1.png" alt="NAS device" height="267" width="585"><br/> <i>Click image to enlarge</i><br/> </p> <p class="text"> <b>Task 2: Game file backup</b><br/> Next, you can create another task to back up your game files and do it the same way you did for your work files.<br/> <img class="big" style="text-align: center" src="/Disk_Image_Backup_Articles/Backup-of-personal-files/Backup-of-personal-files_47.png" alt="R-Drive Image Main panel" height="442" width="561"><br/> <i>Click image to enlarge</i> </p> <p class="text"> <b>Task 3: System disk backup</b><br/> 1. Create a new task and select the System, Boot, and System Recovery partitions.<br/> <img class="big" style="text-align: center" src="/Disk_Image_Backup_Articles/Backup-of-personal-files/Backup-of-personal-files_48.png" alt="Select disk(s) to create image from panel" height="442" width="561"><br/> <i>Click image to enlarge</i><br/> Then click the Next button. </p> <p class="text"> 2. Select the external USB DAS device (E: Backup) for the Main image file,<br/> <img class="big" style="text-align: center" src="/Disk_Image_Backup_Articles/Backup-of-personal-files/Backup-of-personal-files_49.png" alt="Main image file location" height="442" width="561"><br/> <i>Click image to enlarge</i><br/> and click the Options button. </p> <p class="text"> 3. Make sure the Shutdown when completed option is not selected,<br/> <img class="big" style="text-align: center" src="/Disk_Image_Backup_Articles/Backup-of-personal-files/Backup-of-personal-files_50.png" alt="Image options tab" height="467" width="620"><br/> <i>Click image to enlarge</i><br/> and switch to the Replications tab. </p> <p class="text"> 4. Specify the place for replications<br/> <img class="big" style="text-align: center" src="/Disk_Image_Backup_Articles/Backup-of-personal-files/Backup-of-personal-files_51.png" alt="Replications tab" height="475" width="620"><br/> <i>Click image to enlarge</i><br/> and click OK. </p> <p class="text"> 5. Specify the Rotation options.<br/> <img class="big" style="text-align: center" src="/Disk_Image_Backup_Articles/Backup-of-personal-files/Backup-of-personal-files_52.png" alt="Rotation options panel" height="475" width="620"><br/> <i>Click image to enlarge</i><br/> R-Drive Image will create 1 full image once a week and 1 differential image every other day. It will always keep 1 previous full image. Then click the Next button. </p> <p class="text"> 6. Select the options you want on the Task execution schedule panel.<br/> <img class="big" style="text-align: center" src="/Disk_Image_Backup_Articles/Backup-of-personal-files/Backup-of-personal-files_53.png" alt="Task execution schedule panel" height="508" width="561"><br/> <i>Click image to enlarge</i><br/> Make sure the Wake up computer to run this task option is selected. Then click the Save button. </p> <p class="text"> This task will appear on the Tasks and Scripts panel.<br/> <img class="big" style="text-align: center" src="/Disk_Image_Backup_Articles/Backup-of-personal-files/Backup-of-personal-files_54.png" alt="Tasks and Scripts panel" height="508" width="561"><br/> <i>Click image to enlarge</i><br/> </p> <p class="text"> The task will start automatically every day at 4 AM.<br/> <img class="big" style="text-align: center" src="/Disk_Image_Backup_Articles/Backup-of-personal-files/Backup-of-personal-files_55.png" alt="Task result" height="508" width="561"><br/> <i>Click image to enlarge</i><br/> When you wake up your computer and open R-Drive Image again, it will show you the results of the task. </p> <p class="text"> Note that you'll need R-Drive Startup version to restore the system disk. Read more in the R-Drive Image help page: <a rel="noopener" target="_blank" href="https://www.drive-image.com/DriveImage_Help/advanceddiskactions.htm">R-Drive Startup version</a> </p> </div> <script type="text/javascript" charset="utf-8"> function onTabsSwitch(el) { var aIds=[]; var aSibls = el.parentNode.childNodes; for(var i=0;i<aSibls.length;i++) { if ((aSibls[i].nodeType!=1)||(!aSibls[i].id)||(aSibls[i].id.slice(0,4)!="tab-")) continue; aIds.push(aSibls[i].id.slice(4)); } for(var i=0;i<aIds.length;i++) { var div_tab=document.getElementById("tab-"+aIds[i]);if (!div_tab) continue; var bIsActiveTab = ( (el!=null) && (div_tab.id == el.id) ) ? true:false; if (bIsActiveTab) { nodeAddClass(div_tab,"tab-active"); } else { nodeDelClass(div_tab,"tab-active"); } var strPanelsCount = div_tab.getAttribute("js-panels-count"); var iPanelsCount=((strPanelsCount)&&(strPanelsCount.length>0))?parseInt(strPanelsCount):0; if (iPanelsCount<1) iPanelsCount=1; for(var p=1;p<=iPanelsCount;p++) { var strPanelId="panel-"+aIds[i]; if (p>1) strPanelId=strPanelId+"-"+p.toString(); var div_panel=document.getElementById(strPanelId);if (!div_panel) continue; if (bIsActiveTab) { div_panel.style.display = ""; } else { div_panel.style.display = "none"; } } } } function onTabsInit(aTabs,iPanelsCount,aAnchors) { var iSharpPos=window.location.href.lastIndexOf("#"); var strSelTabId=(iSharpPos>0)?window.location.href.slice(iSharpPos+1):""; if ((typeof aAnchors !== 'undefined')&&(aAnchors[strSelTabId])) strSelTabId=aAnchors[strSelTabId]; var iInitTab=0; for(var i=0;i<aTabs.length;i++) { var div_tab=document.getElementById("tab-"+aTabs[i]); if (div_tab) { div_tab.onclick = function(){onTabsSwitch(this);}; if (typeof iPanelsCount !== 'undefined') div_tab.setAttribute("js-panels-count",iPanelsCount.toString()); } if (aTabs[i]==strSelTabId) {iInitTab=i;} } onTabsSwitch(document.getElementById("tab-"+aTabs[iInitTab])); } </script> <script type="text/javascript" charset="utf-8"> var aPlanTabs = ["laptop","desktop"]; onTabsInit(aPlanTabs); </script> </div></div> <div class="row-blue row-section footer-articles"><div class="section"> <div class="articles-items" id="articles-cols"> <div class="bottom-title">Data Recovery Articles</div> <ul class="bottom-col-left"> <li><a href="https://www.r-studio.com/Data_Recovery_Guide.shtml">Data Recovery Guide</a></li> <li><a href="https://www.r-studio.com/Why_RStudio.shtml">Why R-Studio?</a></li> <li><a href="https://www.r-studio.com/Forensic-and-DataRecovery-Business.html">R-Studio for Forensic and Data Recovery Business</a></li> <li><a href="https://www.r-tt.com/r-studioreview_toptenreviews/">R-STUDIO Review on TopTenReviews</a></li> <li><a href="https://www.r-studio.com/SSD_Recovery.html">File Recovery Specifics for SSD devices</a></li> <li><a href="https://www.r-studio.com/How-to-recover-NVMe-device.html">How to recover data from NVMe devices</a></li> <li><a href="https://www.r-studio.com/Success-of-File-Recovery.html">Predicting Success of Common Data Recovery Cases</a></li> <li><a href="https://www.r-studio.com/Recovery_Overwritten_Data.html">Recovery of Overwritten Data</a></li> <li><a href="https://www.r-studio.com/Emergency_File_Recovery.shtml">Emergency File Recovery Using R-Studio Emergency</a></li> <li><a href="https://www.r-studio.com/RAID_Recovery_Presentation.shtml">RAID Recovery Presentation</a></li> <li><a href="https://www.r-studio.com/RStudio_BrokenComputer.shtml">R-Studio: Data recovery from a non-functional computer</a></li> <li><a href="https://www.r-studio.com/File_Recovery_from_a_Computer_that_Wont_Boot.shtml">File Recovery from a Computer that Won't Boot</a></li> <li><a href="https://www.r-studio.com/Clone_Disks_Before_File_Recovery.shtml">Clone Disks Before File Recovery</a></li> <li><a href="https://www.r-studio.com/Video_Recovery.shtml">HD Video Recovery from SD cards</a></li> <li><a href="https://www.r-studio.com/File_Recovery_from_Unbootable_Mac.shtml">File Recovery from an Unbootable Mac Computer</a></li> <li><a href="https://www.r-studio.com/best-file-recovery-mac-system-disk.shtml">The best way to recover files from a Mac system disk</a></li> <li><a href="https://www.r-studio.com/Data_Recovery_From_Encrypted_Linux_Disk.shtml">Data Recovery from an Encrypted Linux Disk after a System Crash</a></li> <li><a href="https://www.r-studio.com/Data_Recovery_From_DMG_Files.shtml">Data Recovery from Apple Disk Images (.DMG files)</a></li> <li><a href="https://www.r-studio.com/File_Recovery_after_Reinstalling_Windows.shtml">File Recovery after Re-installing Windows</a></li> <li><a href="https://www.r-studio.com/DataRecovery_over_Network.shtml">R-Studio: Data Recovery over Network</a></li> <li><a href="https://www.r-studio.com/RStudio_Network_Package.shtml">How To Use R-Studio Corporate Package</a></li> <li><a href="https://www.r-studio.com/Data_Recovery_After_Reformat_NTFS.shtml">Data Recovery from a Re-Formatted NTFS Disk</a></li> <li><a href="https://www.r-studio.com/ReFS-recovery.html">Data Recovery from an ReFS disk</a></li> <li><a href="https://www.r-studio.com/Data_Recovery_After_Reformat_exFAT.shtml">Data Recovery from a Re-Formatted exFAT/FAT Disk</a></li> <li><a href="https://www.r-studio.com/Data_Recovery_After_Erase_HFS.shtml">Data Recovery from an Erased HFS Disk</a></li> <li><a href="https://www.r-studio.com/data-recovery-after-erase-APFS.html">Data Recovery from an Erased APFS Disk</a></li> <li><a href="https://www.r-studio.com/Data_Recovery_After_Reformat_Ext4FS.shtml">Data Recovery from a Re-Formatted Ext2/3/4FS Disk</a></li> <li><a href="https://www.r-studio.com/XFS-recovery.html">Data Recovery from an XFS Disk</a></li> <li><a href="https://www.r-studio.com/NAS_Data_Recovery.shtml">Data Recovery from a Simple NAS</a></li> <li><a href="https://www.r-studio.com/connect-virtual-raid-to-operating-system.html">How to connect virtual RAID and LVM/LDM volumes to the operating system</a></li> </ul> <ul class="bottom-col-right"> <li><a href="https://www.r-studio.com/ntfs-recovery-after-quick-format.html">Specifics of File Recovery After a Quick Format</a></li> <li><a href="https://www.r-studio.com/data-recovery-after-partition-manager-crash.html">Data Recovery After Partition Manager Crash</a></li> <li><a href="https://www.r-studio.com/file-recovery-vs-file-repair.html">File Recovery vs. File Repair</a></li> <li><a href="https://www.r-studio.com/data-recovery-from-virtual-machines.html">Data Recovery from Virtual Machines</a></li> <li><a href="https://www.r-studio.com/Connect-Disks-to-Computer.html">How to Connect Disks to a Computer</a></li> <li><a href="https://www.r-studio.com/emergency-data-recovery-over-network.html">Emergency Data Recovery over Network</a></li> <li><a href="https://www.r-studio.com/data-recovery-over-the-internet.html">Data Recovery over the Internet</a></li> <li><a href="https://www.r-studio.com/creating-custom-file-type-r-studio.html">Creating a Custom Known File Type for R-Studio</a></li> <li><a href="https://www.r-studio.com/finding-raid-parameters.html">Finding RAID parameters</a></li> <li><a href="https://www.r-studio.com/recovering-partitions-on-damaged-disk.html">Recovering Partitions on a Damaged Disk</a></li> <li><a href="https://www.r-studio.com/remote-recovery-nat-firewall-traversal.html">NAT and Firewall Traversal for Remote Data Recovery </a></li> <li><a href="https://www.r-studio.com/external-disk-recovery.html">Data Recovery from an External Disk with a Damaged File System</a></li> <li><a href="https://www.r-studio.com/file-recovery-basics.html">File Recovery Basics</a></li> <li><a href="https://www.r-studio.com/macos-raid-recovery-parameters.html">Default Parameters of Software Stripe Sets (RAID 0) in Mac OS X</a></li> <li><a href="https://www.r-studio.com/vhd-disk-recovery.html">Data Recovery from Virtual Hard Disk (VHD/VHDX) Files</a></li> <li><a href="https://www.r-studio.com/encrypted-disks-recovery.html">Data Recovery from Various File Container Formats and Encrypted Disks</a></li> <li><a href="https://www.r-studio.com/automatic-raid-detection.html">Automatic RAID Parameter Detection</a></li> <li><a href="https://www.r-studio.com/data_recovery_technology.html">IntelligentScan Data Recovery Technology</a></li> <li><a href="https://www.r-studio.com/Multipass-imaging-damaged-drives.html">Multi-pass imaging in R-Studio</a></li> <li><a href="https://www.r-studio.com/runtime-drive-imaging.html">Runtime Imaging in R-Studio</a></li> <li><a href="https://www.r-studio.com/LinearImaging-vs-RuntimeImaging-vs-MultiPassImaging.html">Linear Imaging vs Runtime Imaging vs Multi-Pass Imaging</a></li> <li><a href="https://www.r-studio.com/USB-Stabilizer-for-unstable-drives.html">USB Stabilizer Tech for unstable USB devices</a></li> <li><a href="https://www.r-studio.com/improve-pc3000-data-analysis.html">Joint work of R-Studio and PC-3000 UDMA hardware</a></li> <li><a href="https://www.r-studio.com/HDDSuperClone-drive-imaging.html">Joint work of R-Studio and HDDSuperClone</a></li> <li><a href="https://www.r-studio.com/pro-data-recovery-and-forensic-for-small-business.html">R-Studio T80+ - A Professional Data Recovery and Forensic Solution for Small Business and Individuals Just for 1 USD/day</a></li> </ul> <div class="clearthis"></div> <ul class="bottom-col-left"> <li class="bottom-title">Backup Articles</li> <li><a href="https://www.drive-image.com/r-drive-image-license-transfer.html">R-Drive Image Standalone and Corporate license transferring</a></li> <li><a href="https://www.drive-image.com/fixing-Windows-update-error-0x80070643.html">Fixing Windows update error 0x80070643 with R-Drive Image</a></li> <li><a href="https://www.drive-image.com/backup_software.shtml">Backup with Confidence</a></li> <li><a href="https://www.drive-image.com/Free-Partition-Manager.html">R-Drive Image as a free powerful partition manager</a></li> <li><a href="https://www.drive-image.com/Computer_Recovery_and_System_Restore.shtml">Computer Recovery and System Restore</a></li> <li><a href="https://www.drive-image.com/Disk_Cloning_and_Mass_System_Deployment.shtml">Disk Cloning and Mass System Deployment</a></li> <li><a href="https://www.drive-image.com/imaged-disk-access.html">Accessing Individual Files or Folders on a Backed Up Disk Image</a></li> <li><a href="https://www.drive-image.com/How-to-use-Startup-Bootable-version.html">R-Drive Image startup / bootable version</a></li> <li><a href="https://www.drive-image.com/backup-files-personal-computers-laptops-of-home-self-employed-users.html">File Backup for Personal Computers and Laptops of Home and Self-Employed Users</a></li> <li><a href="https://www.drive-image.com/data-backup-plan.html">Creating a Data Consistent, Space Efficient Data Backup Plan for a Small Business Server</a></li> <li><a href="https://www.drive-image.com/how-move-installed-Windows-from-HDD-to-SSD.html">How to Move the Already Installed Windows from an Old HDD to a New SSD Device and Create a Hybrid Data Storage System</a></li> <li><a href="https://www.drive-image.com/Moving-Windows-to-New-SSD.html">How to Move an Installed Windows to a Larger Disk</a></li> <li><a href="https://www.drive-image.com/Moving-BitLocker-System-Disk-to-New-Device.html">How to Move a BitLocker-Encrypted System Disk to a New Storage Device</a></li> <li><a href="https://www.drive-image.com/Disk-Backup-Mac-Linux.html">How to backup and restore disks on Linux and Mac computers using R-Drive Image</a></li> </ul> <ul class="bottom-col-right"> <li class="bottom-title">Undelete Articles</li> <li><a href="https://www.r-undelete.com/Get_Deleted_Files_Back/">Get Deleted Files Back</a></li> <li><a href="https://www.r-undelete.com/free_photo_recovery/SD-card-recovery.html">Free Recovery from SD and Memory cards</a></li> <li><a href="https://www.r-undelete.com/free_photo_recovery/undelete-HD-video.html">R-Undelete: Video Recovery</a></li> <li><a href="https://www.r-undelete.com/Damaged_File_System.shtml">Recovery from an External Device with a Damaged File System</a></li> <li><a href="https://www.r-undelete.com/File_Recovery_From_Non-Functional_Computer.shtml">File recovery from a non-functional computer</a></li> <li><a href="https://www.r-undelete.com/Free_File_Recovery_from_Android_Phone_Memory_Card.html">Free File Recovery from an Android Phone Memory Card</a></li> <li><a href="https://www.r-undelete.com/free_photo_recovery/how-to-tutorial/">Free Photo and Video File Recovery Tutorial</a></li> <li><a href="https://www.r-undelete.com/easy-file-recovery-in-three-steps.html">Easy file recovery in three steps</a></li> </ul> <div class="clearthis"></div> <div class="bottom-title">PC Privacy Articles</div> <ul class="bottom-col-left"> <li><a href="https://www.r-wipe.com/computer-privacy-and-identity-theft-protection.html">Computer Privacy and Identity Theft Protection</a></li> <li><a href="https://www.r-wipe.com/disk-cleanup.html">Disk Cleanup: How to free up disk space</a></li> <li><a href="https://www.r-wipe.com/clear-browsers-cache-history.html">Clear Browser Cache, History, and Other Data</a></li> <li><a href="https://www.r-wipe.com/bulk-file-delete-registry-cleaning.html">Wipe lists in R-Wipe&Clean</a></li> <li><a href="https://www.r-wipe.com/maintain-computer-privacy-SSD-storage-device.html">SSD Storage Devices and Computer Privacy</a></li> </ul> <div class="clearthis"></div> </div> <div class="articles-more-container"><span class="articles-more" id="articles-more"></span></div> </div></div> <script type="text/javascript" charset="utf-8"> function onArticlesMore(el) { var cols=document.getElementById("articles-cols"); var more=document.getElementById("articles-more"); if (cols && more) { nodeSwitchClass(cols,"articles-full"); nodeSwitchClass(more,"articles-full"); } } function onArticlesInit() { var more=document.getElementById("articles-more"); if (more) {more.onclick = function(){onArticlesMore(this);};} } </script> <div class="row-blue row-section"><div class="section reviews-col reviews-one"> <div class="bottom-col-right"> <div class="feedbacks-header"> <div class="bottom-title"> Drive Image Feedback </div> <div class="feedbacks-meta"> <span itemscope itemtype="http://schema.org/LocalBusiness"> <meta itemprop="name" content="www.drive-image.com"> <meta itemprop="url" content="https://www.drive-image.com"> <meta itemprop="description" content="System Utilities - File recovery and Data Recovery Software, Mail recovery, Undelete, Drive Image, Disk Cleaning, Data Undelete, Security tools for Windows, Mac and Linux, R-Tools Technology Inc."> <span itemprop="aggregateRating" itemscope itemtype="http://schema.org/AggregateRating"> <span itemprop="reviewCount">72</span> <a href="/drive-image-feedback/">feedbacks</a> <br /> Rating: <span itemprop="ratingValue">4.6</span> / <span itemprop="bestRating">5</span> <meta itemprop="worstRating" content = "1"> </span> <meta itemprop="telephone" content="(888) 978-8266"> </span> </div> </div> <div class="feedbacks-wrapper clearfix"> <div class="feedbacks-right"> <a href="https://www.r-tt.com/Feedback.shtml?product=Drive%20Image" title="Add your input"> <span class="btn-add-big btn-add-white"></span> </a> </div> <div class="feedbacks-left jhscroll-container"> <div class="jhscroll-area feedbacks-scroll-area"><div> <div class="feedbacks-items"> <div class="feedbacks-item"> <div class="feedbacks-text"><div> I`ve used R-Drive Image for several months now, and it`s awesome. Dependable, easy; it just plain works! I also appreciate the straightforward, reasonable and clear pricing, which is why I initially chose R-Drive Image over others. </div></div> <div class="feedbacks-info"> <span class="feedbacks-rating"> <span></span><span></span><span></span><span></span><span></span> </span> <span class="feedbacks-author"> <a href="/drive-image-feedback/">John Reid</a> </span> </div> </div> <div class="feedbacks-item"> <div class="feedbacks-text"><div> I am currently using R-Drive Image on a trial basis on Windows 11. Ironically enough, I had installed it and created an image prior to trying to see if a 2011 Acronis True Image disc I had would work. True Image wouldn`t completely install but then wouldn`t uninstall either. So I used the r-tools backup and restore image capabilities to recover from a backup and restore screw-up from another company. ;-) <br />However, what I wanted to suggest is that you create a Home version of your software that may have slightly ... </div></div> <div class="feedbacks-info"> <span class="feedbacks-rating"> <span></span><span></span><span></span> </span> <span class="feedbacks-author"> <a href="/drive-image-feedback/">David Nelson</a> </span> </div> </div> <div class="feedbacks-item"> <div class="feedbacks-text"><div> This help file needs to be updated. None of the names match with the current version of R-Drive Image Standalone 7.1 (Build 7110) <br /> <br />https://www.drive-image.com/DriveImage_Help/restorefromanimage.htm <br /> <br />For example, there is no ` Restore from an Image` on the GUI. Instead there is `Restore Image`. And there is no `Image File Selection` on the GUI. Instead there is `Select image file`. And so on... My suggestion is to open the app, go through a file restore, write down the steps exactly as done, and then ... </div></div> <div class="feedbacks-info"> <span class="feedbacks-rating"> <span></span><span></span><span></span><span></span> </span> <span class="feedbacks-author"> <a href="/drive-image-feedback/">Andrew Eckhardt</a> </span> </div> </div> <div class="feedbacks-item"> <div class="feedbacks-text"><div> The clean user interface makes this product so easy to use. And the number of included features is impressive. Finally, you even provice a drive partitioning tool! This is the product I have been trying to find! </div></div> <div class="feedbacks-info"> <span class="feedbacks-rating"> <span></span><span></span><span></span><span></span><span></span> </span> <span class="feedbacks-author"> <a href="/drive-image-feedback/">Dan Carey</a> </span> </div> </div> <div class="feedbacks-item"> <div class="feedbacks-text"><div> I played with the free trial little realising that my saved image would come to the rescue several months later. I immediately purchased some licences and restored my system with ease. I am most satisfied with R-Drive. I like its clean and simple interface - it makes things easy. </div></div> <div class="feedbacks-info"> <span class="feedbacks-rating"> <span></span><span></span><span></span><span></span><span></span> </span> <span class="feedbacks-author"> <a href="/drive-image-feedback/">Ross Jury</a> </span> </div> </div> </div> </div></div> <div class="jhscroll-bar"><div></div></div> </div> </div> </div> <script type="text/javascript" charset="utf-8"> function scrollGetArea(Container) { if (!Container) return null; var aAreas=nodeFindChildren(Container,".jhscroll-area");if ((!aAreas)||(aAreas.length!=1)) return null; aAreas=nodeFindDirectChildren(aAreas[0],"div");if ((!aAreas)||(aAreas.length!=1)) return null; return aAreas[0]; } function scrollGetBar(Container) { if (!Container) return null; var aBars=nodeFindChildren(Container,".jhscroll-bar");if ((!aBars)||(aBars.length!=1)) return null; aBars=nodeFindDirectChildren(aBars[0],"div");if ((!aBars)||(aBars.length!=1)) return null; return aBars[0]; } function onScrollScroll(ScrlArea,ScrlBar) { if ((!ScrlArea||!ScrlBar)||(ScrlArea.scrollWidth<=0)) return; var iSizePerc=Math.round(ScrlArea.clientWidth*100/ScrlArea.scrollWidth); if (iSizePerc>100) {iSizePerc=100;} if (iSizePerc<10) {iSizePerc=10;} var iLeftPerc=Math.round(ScrlArea.scrollLeft*100/ScrlArea.scrollWidth); if (iLeftPerc+iSizePerc>100) {iLeftPerc=100-iSizePerc;} ScrlBar.style.left=iLeftPerc.toString()+'%'; ScrlBar.style.width=iSizePerc.toString()+'%'; } function onScrollInit() { var aScrolls=nodeFindChildren(document,".jhscroll-container"); if (!aScrolls||!aScrolls.length) return; for(var i=0;i<aScrolls.length;i++) { var ScrlArea=scrollGetArea(aScrolls[i]);if (!ScrlArea) continue; var ScrlBar=scrollGetBar(aScrolls[i]);if (!ScrlBar) continue; onScrollScroll(ScrlArea,ScrlBar); ScrlBar.ondragstart = function() { return false; }; ScrlBar.onmousedown = function(e) { e = e || window.event; if (e.preventDefault) {e.preventDefault();} else {e.returnValue=false;} var ThisBar=this;if (!ThisBar) return; var ThisBarParent=ThisBar.parentNode;if (!ThisBarParent) return; var iBarWidth=ThisBar.offsetWidth; var iBarParent=ThisBarParent.offsetWidth; if (iBarWidth>=iBarParent) return; var ThisScroll=nodeFindParent(ThisBar,".jhscroll-container"); var ThisArea=scrollGetArea(ThisScroll);if (!ThisArea) return; var iOrigX=e.clientX;var iOrigLeft=ThisBar.offsetLeft;var iLastPerc=-1; document.onmousemove = function(e) { e = e || window.event; var iNewLeft=iOrigLeft+e.clientX-iOrigX; if (iNewLeft<0) {iNewLeft=0;} if (iNewLeft+iBarWidth>iBarParent) {iNewLeft=iBarParent-iBarWidth;} var iBarLeftPerc=Math.round(iNewLeft*100/ThisBarParent.offsetWidth); if (iBarLeftPerc==iLastPerc) return false; iLastPerc=iBarLeftPerc; ThisBar.style.left=iBarLeftPerc.toString()+'%'; var iAreaWidth=ThisArea.scrollWidth; var iAreaWindow=ThisArea.clientWidth; if (iAreaWindow>=iAreaWidth) return; ThisArea.scrollLeft=Math.round((iNewLeft/(iBarParent-iBarWidth))*(iAreaWidth-iAreaWindow)); return false; } document.onmouseup = function() { document.onmousemove = null; document.onmouseup = null; } } ScrlArea.onscroll=function() { var ThisScroll=nodeFindParent(this,".jhscroll-container"); var ThisBar=scrollGetBar(ThisScroll);if (!ThisBar) return; onScrollScroll(this,ThisBar); } } } onScrollInit(); </script> </div></div> </div> <div class="ftr-footer-wrapper"> <div class="section ftr-footer"> <div class="footer-wdir"> <ul class="footer-wdir-ul"> <li><a href="https://www.r-tt.com/technology-articles/">Technology articles</a></li> <li><a href="https://www.r-tt.com/Glossary.html">Glossary</a></li> <li><a href="http://directory.r-tt.com/">Web directory</a></li> </ul> </div> <div class="ftr-social-container"> <div class="social"> <a rel="nofollow noopener" target="_blank" href="https://twitter.com/RTT_Inc" class="social-item" title="Twitter"><span class="social-twitter"></span></a> <a rel="nofollow noopener" target="_blank" href="https://www.facebook.com/pages/R-Tools-Technology-Inc/236155899748769" class="social-item" title="Facebook"><span class="social-facebook"></span></a> <a rel="nofollow noopener" target="_blank" href="http://rtoolstechnology.tumblr.com/" class="social-item" title="Tumblr"><span class="social-tumblr"></span></a> <a rel="nofollow noopener" target="_blank" href="https://rtoolstechnology.wordpress.com/" class="social-item" title="Wordpress"><span class="social-wordpress"></span></a> </div> </div> <div> <ul class="footer-nav"> <li id="nfm_1"><a href="https://www.drive-image.com/Terms_Of_Use.shtml">Terms of Use</a></li> <li id="nfm_2"><a href="https://www.drive-image.com/Privacy_Policy.shtml">Privacy Policy</a></li> <li id="nfm_3"><a target="_blank" href="https://www.r-tt.com/RTTInfo.shtml">Contact Us</a></li> <li id="nfm_4"><a target="_blank" href="https://www.r-tt.com/Feedback.shtml">Feedback</a></li> <li id="nfm_5"><a href="https://www.drive-image.com/SiteMap.shtml">Site Map</a></li> <li id="nfm_6"><a target="_blank" rel="noopener" href="https://forum.r-tt.com/viewforum.php?f=14">R-Drive Image Forum</a></li> </ul> </div> <div class="clearthis"></div> <div class="footer-copyright"> © Copyright 2000-2024 R-Tools Technology Inc. </div> </div> </div> </div> </div> </div> <script type="text/javascript" charset="utf-8"> function removeMediaQueries() { var minWidth=982; document.body.setAttribute("style","min-width: "+(minWidth+8).toString()+"px;"); var styleSheets = document.styleSheets;if (!styleSheets) return; for (var i = 0;i<styleSheets.length;i++) { var cssRules = styleSheets[i].cssRules;if (!cssRules) continue; for (var j = 0;j<cssRules.length;j++) { if (!(cssRules[j] instanceof CSSMediaRule)) continue; var n=cssRules[j].media.mediaText.indexOf("max-width:");if (n<=0) continue; n=parseInt(cssRules[j].media.mediaText.substring(n+10));if ((n<=0)||(n>minWidth)) continue; cssRules[j].media.mediaText = "(max-width:1px)"; } } } function onFlexDetect() { var fbd_doc = document.body || document.documentElement;var fbd_style = fbd_doc.style; if (!(fbd_style.webkitFlexWrap == '' || fbd_style.msFlexWrap == '' || fbd_style.flexWrap == '' )) { var hdr=document.getElementById("hdr-hdr"); if (hdr) { hdr.className+=" no-flex"; removeMediaQueries(); } } } onFlexDetect(); </script> <script type="text/javascript" charset="utf-8"> function onMenuInit() { if(document.getElementById('menu-main')) { var menu = document.getElementById('menu-main'), menuContainer = document.getElementById('menu-container'), menuItems = nodeFindChildren(menu,'.menu-item'), menuTitle = nodeFindChildren(menu,'.menu-title'), menuBtn = nodeFindChildren(menuContainer,'.menu-button'); // show menu function showMenu() {nodeAddClass(menuContainer,'show-menu');} // hide menu function hideMenu() {nodeDelClass(menuContainer,'show-menu');} // menu button function clickButton(_this) { if(nodeHasClass(_this,'active')) { nodeDelClass(_this,'active'); nodesDelClass(menuItems,'active'); hideMenu(); } else { nodeAddClass(_this,'active'); showMenu(); } }; for(var i=0;i<menuBtn.length;i++) {menuBtn[i].onclick = function(){clickButton(this);};} // click on menu function clickItem(_this) { if(window.innerWidth < 982) { var _par = _this.parentNode; if (nodeHasClass(_par,'menu-item-wrap')) {_par=_par.parentNode;} if(nodeHasClass(_par,'active')) { nodeDelClass(_par,'active'); } else { var Siblings = _par.parentNode.childNodes; for(var i=0;i<Siblings.length;i++) { if ((Siblings[i].nodeType!=1)||(Siblings[i]==_par)) continue; nodeDelClass(Siblings[i],'active'); } nodeAddClass(_par,'active'); } } }; for(var i=0;i<menuTitle.length;i++) {menuTitle[i].onclick = function(){clickItem(this);};} // close adaptive menu on events function closeAdaptiveMenu() { if(nodesHasClass(menuBtn,'active')) { hideMenu(); nodesDelClass(menuBtn,'active'); } if(nodesHasClass(menuItems,'active')) { nodesDelClass(menuItems,'active'); } } // click outside adaptive menu if (document.addEventListener) { document.addEventListener('mouseup', function(e) { if((window.innerWidth < 982) && !(menuContainer === e.target) && !hasSpecifiedChild(menuContainer,e.target) ) { closeAdaptiveMenu(); } }); } // process window resize, for off of open dropdown in case of mobile->desktop if (window.addEventListener) { window.addEventListener('resize', function() { if(window.innerWidth > 982) {closeAdaptiveMenu();} }); }; } } onMenuInit(); </script> <script type="text/javascript" charset="utf-8"> if (typeof onImgBigShowInit !== 'undefined') {onImgBigShowInit();} if (typeof onArticlesInit !== 'undefined') {onArticlesInit();} if (typeof onReviewsInit !== 'undefined') {onReviewsInit();} if (typeof onOsTabsInit !== 'undefined') {onOsTabsInit();} </script> <div id="pp-info"> <ul> <li> We use cookies to ensure you get the best experience on our website. <a href="https://www.drive-image.com/Privacy_Policy.shtml" target="_blank">Read more</a> </li> <li> <a id="pp-done">Got It</a> </li> </ul> <img id="pp-info-0" alt="" /> <img id="pp-info-1" alt="" /> <img id="pp-info-2" alt="" /> <img id="pp-info-3" alt="" /> <img id="pp-info-4" alt="" /> <img id="pp-info-5" alt="" /> </div> <script type="text/javascript" charset="utf-8"> function getCookie(cname) { var name = cname + "="; var decodedCookie = decodeURIComponent(document.cookie); var ca = decodedCookie.split(';'); for(var i = 0; i <ca.length; i++) { var c = ca[i]; while (c.charAt(0) == ' ') { c = c.substring(1); } if (c.indexOf(name) == 0) { return c.substring(name.length, c.length); } } return ""; } function setCookie(cname, cvalue, exdays) { var d = new Date(); d.setTime(d.getTime() + (exdays*24*60*60*1000)); var expires = "expires="+ d.toUTCString(); document.cookie = cname + "=" + cvalue + ";" + expires + ";path=/"; } function pingCookie(strId,aDomains,strGif) { for(i=0;i<aDomains.length;i++) { var strImgId=strId+"-"+i; document.getElementById(strImgId).src=aDomains[i]+strGif; document.getElementById(strImgId).style.display = ""; } } </script><script type="text/javascript" charset="utf-8"> var strPpCookie="r_pp_v1"; var strPpDoneGif="r_pp_v1_ji8s9nde.gif"; var aPpDomains=["https://secure.r-tt.com/","https://www.r-tt.com/","https://www.r-studio.com/","https://www.r-undelete.com/","https://www.r-wipe.com/","https://www.drive-image.com/"]; function onPpInfoDone() { document.getElementById("pp-info").style.display = "none"; setCookie(strPpCookie,"1",3650); pingCookie("pp-info",aPpDomains,strPpDoneGif); } function onPpInfoShow() { var pp_cookie = getCookie(strPpCookie); if (pp_cookie == "") {document.getElementById("pp-info").style.display = "block";} } document.getElementById("pp-done").onclick = onPpInfoDone; setTimeout(function(){onPpInfoShow();},1500); </script> <script type="text/javascript" charset="utf-8"> var strSeCookie="r_se_v1"; var strSeDoneGif="r_se_v1_ji8s9nde.gif"; var aSeDomains=["https://www.r-tt.com/","https://www.r-studio.com/","https://www.r-undelete.com/","https://www.r-wipe.com/","https://www.drive-image.com/"]; function onEventInfoDone() { nodeDelClass(document.getElementById("hdr-wrapper"),"special-event") setCookie(strSeCookie,"1",12); pingCookie("pp-info",aSeDomains,stSepDoneGif); } function onEventInfoShow() { var se_cookie = getCookie(strSeCookie); if (se_cookie == "") {nodeAddClass(document.getElementById("hdr-wrapper"),"special-event");} } if (document.getElementById("event-done")) { var iSecurePos=window.location.href.indexOf("secure."); if (iSecurePos<0) { document.getElementById("event-done").onclick = onEventInfoDone; setTimeout(function(){onEventInfoShow();},1000); } } </script> </body></html>