CINXE.COM

Emergency File Recovery Using R-Studio Emergency

<!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"> <meta name="keywords" content="startup disk, emergency recovery, BIOS, graphic interface, entire hard drive image, file recovery tool, formatted disk, system recovery disk, recovered files"/> <meta name="Description" content="Step-by-step instructions on how to perform emergency file recovery using R-Studio Emergency bootable media - startup disks"/> <title>Emergency File Recovery Using R-Studio Emergency</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="&times;"; 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"> <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-langs"> <div class="langs-block"> <div class="langs-btn"> <div class="langs-cur-flag"> <img width="51" height="29" alt="" src="/images/lang/en.png"/> </div> <span class="langs-sel"></span> </div> <div class="langs-list"> <a href="https://www.r-studio.com/de/Notfall_Dateiwiederherstellung.shtml"> <img src="/images/lang/de.png" width="51" height="29" alt="" /> <span>Deutsch</span> </a> <a href="https://www.r-studio.com/fr/Recuperation_de_fichier_d_urgence.shtml"> <img src="/images/lang/fr.png" width="51" height="29" alt="" /> <span>Fran&ccedil;ais</span> </a> <a href="https://www.r-studio.com/es/Recuperacion_de_archivos_de_emergencia.shtml"> <img src="/images/lang/es.png" width="51" height="29" alt="" /> <span>Espa&ntilde;ol</span> </a> <a href="https://www.r-studio.com/ru/Emergency_File_Recovery.shtml"> <img src="/images/lang/ru.png" width="51" height="29" alt="" /> <span>&#1056;&#1091;&#1089;&#1089;&#1082;&#1080;&#1081;</span> </a> </div> </div> </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 &amp; 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 &amp; Clean</a> </li> <li> <a href="https://www.r-wipe.com/#mac">R-Wipe &amp; 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"> Emergency File Recovery Using R-Studio Emergency </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.r-studio.com/Emergency_File_Recovery.shtml" title="Share on Facebook"><img src="/images/social/fb-share32.png"/></a> <a target="_blank" href="https://twitter.com/intent/tweet?url=https://www.r-studio.com/Emergency_File_Recovery.shtml&text=Emergency%20File%20Recovery%20Using%20R-Studio%20Emergency" 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.r-studio.com/Emergency_File_Recovery.shtml&description=Emergency%20File%20Recovery%20Using%20R-Studio%20Emergency" title="Share on Pinterest"><img src="/images/social/pt-share32.png"/></a> <a target="_blank" href="http://www.reddit.com/submit?url=https://www.r-studio.com/Emergency_File_Recovery.shtml&title=Emergency%20File%20Recovery%20Using%20R-Studio%20Emergency" title="Share on Reddit"><img src="/images/social/reddit-share32.png"/></a> </div> <p class="text"> Many computer users have shared the unfortunate experience at least once (but some perhaps twice or - with some really bad luck-even more) of discovering that their computer doesn&#39;t start anymore. The computer&#39;s hardware seems to be functioning, and the operating system can be restored back from a <a rel="noopener" target="_blank" href="https://www.drive-image.com/Computer_Recovery_and_System_Restore.shtml">system recovery disk</a>. But those scary messages tell the user that such a system recovery will destroy all the data - all family photos, movie and music collections, and valuable financial docs could be lost for good. </p> <p class="text"> Well, that could happen, but it won&#39;t, thanks to a special procedure called an &quot; <a rel="noopener" target="_blank" href="https://www.r-studio.com/What-is-Emergency-File-Recovery.html">emergency file recovery</a>,&quot; in which the computer is started from a special startup disk containing a file recovery tool. </p> <p class="text">R-Studio Emergency is an excellent choice for tackling this procedure under these circumstances. So let&#39;s see how R-Studio Emergency could save your endangered files. </p> <p class="text"> To give you step-by-step instructions on how to perform emergency file recovery using R-Studio Emergency, we&#39;ll use the case of a notebook, as a typical example. The notebook&#39;s hardware is simple: a 10GB hard drive equally <a rel="noopener" target="_blank" href="https://www.r-studio.com/What-is-Disk-Partition.html">partitioned</a> into two <a rel="noopener" target="_blank" href="https://www.r-studio.com/What-is-Logical-Disk.html">logical disks</a>, C: (the system one, NTFS-formatted; its label is SYSTEM) and D: (FAT32 formatted; its label is DATA). The system logical disk appears damaged, and the computer cannot start. </p> <p class="text"> <b>Hard Drive Inspection</b><br/> The goal of inspecting the hard drive is to make sure that it doesn&#39;t have any hardware-based problems. Symptoms that a hard drive has hardware problems: </p> <ul class="article"> <li>Your system does not recognize the device anymore, or it appears under an unusual name.</li> <li>The hard drive makes unusual noises, clicks, starts too slowly.</li> <li>Bad blocks constantly appear on your hard drive.</li> <li><a rel="noopener" target="_blank" href="https://www.r-studio.com/What-is-SMART.html">SMART</a> inspecting programs report a severe hardware failure event.</li> </ul> <p class="text"> <b>Important!</b> If you believe that the hard drive in the computer is malfunctioning, use R-Studio Emergency to create an image of the entire hard drive. DO NOT DO ANYTHING ELSE WITH IT BY YOURSELF ANYMORE! Don&#39;t try to run a scan or recovery procedure. Don&#39;t try to use some other data recovery software. Remember, tampering with a drive in this condition will surely inflict more damage to your files. At best, you&#39;ll have to pay extra money to a professional data recovery service. At worst, you&#39;ll lose all your data for good. Bring the drive to qualified data recovery professionals. They have special equipment, software, and, most important, the required skills to work with such drives. </p> <p class="text"> Moreover, it is a good practice to always <a rel="noopener" target="_blank" href="https://www.r-studio.com/Clone_Disks_Before_File_Recovery.shtml">create images</a> and recover files from them, even if the hard drive and other hardware work normally. This keeps your data safe from accidental data corruption. See the <a href="#Image"><b>Working with Images</b></a> section for more information. </p> <p class="text"> If there are no problems detected, we can go further to actual file recovery. </p> <p class="text"> <b>Preparation for File Recovery</b><br/> We&#39;ll need some additional material for data recovery: </p> <p class="text"> 1. A computer connected to the Internet. We&#39;ll use it to create R-Studio Emergency startup disks and obtain a computer&#39;s Activation Code to register R-Studio Emergency. If this other computer is on the same local network as the damaged computer, it can be used as a place to store recovered files. Below we&#39;ll explain how.<br/> 2. A place to store recovered files and other information like scan info and disk images. We can use: </p> <ul class="article"> <li>A formatted USB flash drive. This is the best choice if its size is enough to store all recovered files.</li> <li>An external USB hard drive formatted as NTFS or Ext2/3fs.<br/> Please note:<br/> a. An NTFS hard drive should be properly disconnected from a Windows computer through the Safely Remove Hardware icon on the tray menu rather than by simply unplugging it from the computer. If you haven&#39;t properly disconnected the USB drive, R-Studio Emergency will see it as a read-only disk. To correct the situation, you may connect the USB disk to a Windows computer and properly disconnect it using the Safely Remove Hardware icon on the system tray menu.<br/> Also, non-Windows computers may see NTFS disks as read-only or not be able to read files from that disk at all.<br/> b. An Ext2/3fs hard drive requires some additional third-party drivers to read data on it if it&#39;s connected to a non-Linux computer, like a Windows or a Mac machine.</li> <li>A network computer. It should have an accessible network share. Below we&#39;ll explain how to connect this share as a network drive in R-Studio Emergency.</li> </ul> <p class="text"> And always remember the most important rule: <b>NEVER TRY TO SAVE RECOVERED FILES/FOLDERS ON THE SAME LOGICAL DISK WHERE THEY RESIDE!!!</b> Or you may obtain unpredictable results and lose all your data. </p> <p class="text"> 3. If you already purchased R-Studio, the order information such as Order ID, your e-mail, R-Studio registration key, etc. You may find this information in the e-mails you received upon purchasing R-Studio. </p> <p class="text"> Even before registering, you can estimate the chances that R-Studio Emergency will be able to recover your files successfully, and purchase it later. Unregistered R-Studio Emergency can perform any data recovery operation (including <a rel="noopener" target="_blank" href="https://www.r-wipe.com/computer-privacy-and-identity-theft-protection.html">wiping a disk</a> or partition), except working on network and saving recovered files. But you may preview files to estimate the chances of recovering them successfully. </p> <p class="text"> <b>Creating R-Studio Emergency Startup Disks </b><br/> If your computer has a CD/DVD recording drive, you should download R-Studio Emergency GUI ISO Image for Macintosh, UNIX, Linux, and Windows users (Intel based) and create the startup CD/DVD disc using any CD/DVD-burning software. </p> <p class="text"> Windows users may also download R-Studio Emergency Startup Media Creator to install it and create a startup CD/DVD disc, a startup disk on FAT/FAT32-formatted removable media (including a USB flash memory disk), or two floppy disks. The creation process is simple, and you may find detailed instructions in R-Studio online help: <a rel="noopener" target="_blank" href="https://www.r-studio.com/Unformat_Help/r-studiobootable.html">R-Studio Emergency</a>. </p> <p class="text"> You may download the required files either from <a rel="noopener" target="_blank" href="https://secure.r-tt.com/UserConsole.shtml">the Registered User&#39;s Console</a> or from <a rel="noopener" target="_blank" href="https://www.r-studio.com/Data_Recovery_Download.shtml"> the download page</a>. </p> <p class="text"> <b>Starting Your Computer Using R-Studio Emergency Startup Disks</b><br/> Make the device with R-Studio Emergency bootable in the BIOS of your computer. Refer to the computer&#39;s documentation for details. Most likely, your system will automatically start from a CD/DVD drive if it finds that a startup disc is present in it. </p> <p class="text"> Then start your computer. The <i>Startup Options</i> screen will appear.<br/> <img class="big" style='text-align: center' src="/Disk_Recovery_Articles/Emergency_File_Recovery/StartupScreen.png" width="586" height="326" alt="Startup Options screen"/><br/> <i>Click image to enlarge</i> </p> <p class="text"> Select <i>R-Studio Emergency GUI GUI (Graphic Mode)</i> to start R-Studio Emergency in its graphic mode. In this mode, R-Studio Emergency has all the functionality of R-Studio itself, aside from its limited graphic file preview. Almost all controls of this version are similar to those of R-Studio itself. So you can always consult the <a rel="noopener" target="_blank" href="https://www.r-studio.com/Unformat_Help/">R-Studio online help</a> when a question arises. </p> <p class="text"> Select <i>R-Studio Emergency GUI TUI (Text Mode)</i> if you experience a problem with the graphic system. In this mode, R-Studio still has a graphic interface, but it is made out of text characters and uses standard graphic modes supported by all graphic systems. The functionality of this mode is a bit more limited than that of the Graphic Mode, but you still can perform most data recovery operations, and it supports a mouse. However, previewing graphic files is impossible. You may find more information on how to work with R-Studio Emergency in its Text Mode on the R-Studio online help. </p> <p class="text"> The first screen you see when R-Studio Emergency starts is the <i>R-Studio Emergency Demo Activation</i> dialog box.<br/> <img class="big" style='text-align: center' src="/Disk_Recovery_Articles/Emergency_File_Recovery/Emergency_File_Recovery_activation.png" width="313" height="226" alt="Activation dialog box"/> <br/> <i>Click image to enlarge</i> </p> <p class="text"> Enter the Activation Code if you already have it, or click the Cancel button to work with R-Studio Emergency in the Demo mode to evaluate your chances of recovering your files successfully. If you already purchased R-Studio Emergency and want to obtain the Activation Code right now, you may go to the <a href="#Activ"><b>R-Studio Emergency Activation</b></a> section to learn how to do that. </p> <p class="text"> <b>Inspecting the Damaged Computer</b><br/> When R-Studio starts, its <i>Main</i> panel appears. Looking at it, you may see the computer&#39;s hardware and estimate which data is damaged on the hard drive<br/> <img class="big" style='text-align: center' src="/Disk_Recovery_Articles/Emergency_File_Recovery/Emergency_File_Recovery_StartupMain.png" width="586" height="440" alt="Main panel"/> <br/> <i>Click image to enlarge</i> </p> <p class="text"> In our case, the <i>Drives</i> panel shows that there are two hard drives on the computer. </p> <table border=1 cellspacing=0 cellpadding=3 class="articles920"> <tr><td width=50% valign=top style='border:solid windowtext 1.0pt'> <img class="big" style='text-align: center' src="/Disk_Recovery_Articles/Emergency_File_Recovery/startupmainhdd1.png" width="384" height="32" alt="Internal hard drive"/> </td><td width=50% valign=top style='border:solid windowtext 1.0pt'> Computer&#39;s internal disk where the lost files reside </td></tr> <tr><td width=50% valign=top style='border:solid windowtext 1.0pt'> <img class="big" style='text-align: center' src="/Disk_Recovery_Articles/Emergency_File_Recovery/startupmainhdd2.png" width="384" height="32" alt="External USB hard drive2"/> </td><td width=50% valign=top style='border:solid windowtext 1.0pt'> External USB hard drive, where you&#39;ll save your recovered files, scan info, etc </td></tr> </table> <p class="text"> There are two partitions on the internal hard drive, one with a damaged file system (Partition1), the other with a valid FAT32 file system (Partition2). If there were a deleted partition, it would be shown as an Empty Space object. </p> <p class="text"> Note: Sometimes Windows leaves small empty spaces when creating a partition on a hard drive. Empty Space7 on the second hard drive is an example. </p> <p class="text"> If you plan to use a network drive to save recovered files and other information, it&#39;s time to set up a network connection and connect a network drive. Go to the <a href="#Network"><b>Network Setup</b></a> section for more information. </p> <p class="text"> <b>File Recovery</b><br/> For our case, we need to perform two data recovery tasks:<br/> 1. Recover files from an existing logical disk (Partition2)<br/> 2. Recover files from a damaged logical disk. (Partition1) </p> <p class="text"> <b>File Recovery from the Existing Logical Disk/Partition</b><br/> We start with recovering files from the existing logical disk Partition2. </p> <p class="text"> Double-click the existing logical disk from which you want to recover your files. R-Studio will enumerate the files and show the folder/file structure on this partition.<br/> <img class="big" style='text-align: center' src="/Disk_Recovery_Articles/Emergency_File_Recovery/Emergency_File_Recovery_MainFolderFile.png" width="586" height="440" alt="Folders/Files panel"/> <br/> <i>Click image to enlarge</i> </p> <p class="text"> Mark files and folders you want to recover.<br/> R-Studio will show which files and folders are marked for recovery. </p> <p class="text"> <i>Folders panel</i> </p> <table border=1 cellspacing=0 cellpadding=3 class="articles920"> <tr><td width=15% valign=top style='border:solid windowtext 1.0pt'> <img style="text-align: left;" src="/Disk_Recovery_Articles/Emergency_File_Recovery/FolDel.png" alt="Deleted folder" width="101" height="16"/> </td><td width=65% valign=top style='border:solid windowtext 1.0pt'> Deleted folder </td></tr> <tr><td width=15% valign=top style='border:solid windowtext 1.0pt'> <img style="text-align: left;" src="/Disk_Recovery_Articles/Emergency_File_Recovery/FolMarked.png" alt="Marked folder" width="140" height="18"/> </td><td width=65% valign=top style='border:solid windowtext 1.0pt'> Marked folder (all child objects in this folder are marked) </td></tr> <tr><td width=15% valign=top style='border:solid windowtext 1.0pt'> <img style="text-align: left;" src="/Disk_Recovery_Articles/Emergency_File_Recovery/FolPartMarked.png" alt="Partially marked folder" width="85" height="19"/> </td><td width=65% valign=top style='border:solid windowtext 1.0pt'> Partially marked folder (some child objects in this folder are marked) </td></tr> <tr><td width=15% valign=top style='border:solid windowtext 1.0pt'> <img style="text-align: left;" src="/Disk_Recovery_Articles/Emergency_File_Recovery/FolCrossLinkDel.png" alt="Cross-linked folder" width="85" height="19"/> </td><td width=65% valign=top style='border:solid windowtext 1.0pt'> Cross-linked deleted folder (a FAT folder containing data that also belong to other FAT folders) </td></tr> <tr><td width=15% valign=top style='border:solid windowtext 1.0pt'> <img style="text-align: left;" src="/Disk_Recovery_Articles/Emergency_File_Recovery/FolQuestDel.png" alt="Questionable folder" width="101" height="16"/> </td><td width=65% valign=top style='border:solid windowtext 1.0pt'> Questionable deleted folder (a FAT folder found by R-Studio, but with apparently invalid content) </td></tr> </table> <p class="text"> <i>Files panel</i> </p> <table border=1 cellspacing=0 cellpadding=3 class="articles920"> <tr><td width=25% valign=top style='border:solid windowtext 1.0pt'> <img style="text-align: left;" src="/Disk_Recovery_Articles/Emergency_File_Recovery/FileDel.png" alt="Deleted file" width="169" height="17"/> </td><td width=65% valign=top style='border:solid windowtext 1.0pt'> Deleted file </td></tr> <tr><td width=25% valign=top style='border:solid windowtext 1.0pt'> <img style="text-align: left;" src="/Disk_Recovery_Articles/Emergency_File_Recovery/FileMark.png" alt="Marked file" width="209" height="16"/> </td><td width=65% valign=top style='border:solid windowtext 1.0pt'> Marked file. It&#39;ll be recovered when the <i>Recover Marked</i> button is clicked. </td></tr> <tr><td width=25% valign=top style='border:solid windowtext 1.0pt'> <img style="text-align: left;" src="/Disk_Recovery_Articles/Emergency_File_Recovery/FileSelec.png" alt="Selected file" width="263" height="22"/> </td><td width=65% valign=top style='border:solid windowtext 1.0pt'> Selected file. It&#39;ll be recovered when the <i>Recover Button</i> is clicked </td></tr> </table> <p class="text"> You may use the following methods to find and mark files for recovery: <ul class="article"> <li><b>Sorting files by their types (extensions).</b><br/> Select the <i>Extensions</i> tab on the <i>Sorted by</i> bar. R-Studio will show files sorted by their types (extensions) found on the logical disk.<br/> <img class="big" style='text-align: center' src="/Disk_Recovery_Articles/Emergency_File_Recovery/Emergency_File_Recovery_MainExten.png" width="586" height="440" alt="Files sorted by extensions"/><br/> <i>Click image to enlarge</i> </li><br/> <li><b>Sorting files by their times (Creation, Modification, Access).</b><br/> Select the appropriate tab on the <i>Sorted by</i> bar. R-Studio will show files sorted by their respective times:<br/> <img class="big" style='text-align: center' src="/Disk_Recovery_Articles/Emergency_File_Recovery/Emergency_File_Recovery_MainTime.png" width="586" height="440" alt="Files sorted by time"/><br/> <i>Click image to enlarge</i> </li> </ul> <p class="text"> You may see paths to the individual files on the <i>Contents</i> pane if you select <i>Path</i> on the <i>View</i> -> <i>Contents</i> -> <i>View Columns</i> menu. </p> <p class="text"> Also, you can find and mark specific files to recover by using the <i>Find/Mark</i> dialog box. Click the <i>Find/Mark</i> button and specify the file(s), their options, and what to do with them.<br/> <img class="big" style='text-align: center' src="/Disk_Recovery_Articles/Emergency_File_Recovery/Emergency_File_Recovery_findmark.png" width="269" height="229" alt="Find/Mark dialog box"/><br/> <i>Click image to enlarge</i> </p> <p class="text"> You may specify to find either specific files, files with certain extensions, or all files that meet general search patter. Advanced users may use regular expressions.<br/> </p> <table border=1 cellspacing=0 cellpadding=3 class="articles920"> <tr><td width=20% valign=top style='border:solid windowtext 1.0pt'> If this option is selected </td><td width=80% valign=top style='border:solid windowtext 1.0pt'> R-Studio treats specified strings as </td></tr> <tr><td width=20% valign=top style='border:solid windowtext 1.0pt'> Files </td><td width=80% valign=top style='border:solid windowtext 1.0pt'> File names. Use ? (a question mark) for one unspecified character and * (an asterisk) for an unlimited number of them to specify file masks. </td></tr> <tr><td width=20% valign=top style='border:solid windowtext 1.0pt'> File Extensions </td><td width=80% valign=top style='border:solid windowtext 1.0pt'> File extensions. </td></tr> <tr><td width=20% valign=top style='border:solid windowtext 1.0pt'> Regular Expressions </td><td width=80% valign=top style='border:solid windowtext 1.0pt'> Regular expressions. </td></tr> <tr><td width=20% valign=top style='border:solid windowtext 1.0pt'> All Files </td><td width=80% valign=top style='border:solid windowtext 1.0pt'> R-Studio applies <i>Advanced Options</i> to all files. </td></tr> </table> <p class="text"> Then you need to specify search options. </p> <table border=1 cellspacing=0 cellpadding=3 class="articles920"> <tr><td width=20% valign=top style='border:solid windowtext 1.0pt'> If this check box is selected, </td><td width=80% valign=top style='border:solid windowtext 1.0pt'> </td></tr> <tr><td width=20% valign=top style='border:solid windowtext 1.0pt'> Match case </td><td width=80% valign=top style='border:solid windowtext 1.0pt'> R-Studio makes a case-sensitive search. </td></tr> <tr><td width=20% valign=top style='border:solid windowtext 1.0pt'> Deleted files </td><td width=80% valign=top style='border:solid windowtext 1.0pt'> R-Studio makes a search among deleted files/folders. </td></tr> <tr><td width=20% valign=top style='border:solid windowtext 1.0pt'> Existing files </td><td width=80% valign=top style='border:solid windowtext 1.0pt'> R-Studio makes a search among existing files/folders. </td></tr> <tr><td width=20% valign=top style='border:solid windowtext 1.0pt'> Look at Files </td><td width=80% valign=top style='border:solid windowtext 1.0pt'> R-Studio includes files in a search. </td></tr> <tr><td width=20% valign=top style='border:solid windowtext 1.0pt'> Look at Folders </td><td width=80% valign=top style='border:solid windowtext 1.0pt'> R-Studio includes folders in a search. </td></tr> <tr><td width=20% valign=top style='border:solid windowtext 1.0pt'> Direction </td><td width=80% valign=top style='border:solid windowtext 1.0pt'> Specifies search direction from the current position. Available only if <i>From current folder</i> is selected in <i>Look in:</i>. </td></tr> <tr><td width=20% valign=top style='border:solid windowtext 1.0pt'> Look in: </td><td width=80% valign=top style='border:solid windowtext 1.0pt'> Specifies where R-Studio searches for, and marks, files. It can look for them on the <i>Entire disk, From current folder, In the Current folder and subfolders</i>, and in the <i>Current folder only</i>. If <i>From current folder</i> is selected, you may also specify the <i>Direction</i> for the search from the current position in the current folder </td></tr> </table> <p class="text"> Then you need to specify in the Find/Mark mode what you want to do with the found files and folders. </p> <table border=1 cellspacing=0 cellpadding=3 class="articles920"> <tr><td width=20% valign=top style='border:solid windowtext 1.0pt'> Find all matched files </td><td width=80% valign=top style='border:solid windowtext 1.0pt'> R-Studio searches for all matched files. The search results appear on the <i>Find Results</i> panel. </td></tr> <tr><td width=20% valign=top style='border:solid windowtext 1.0pt'> Find first matched file </td><td width=80% valign=top style='border:solid windowtext 1.0pt'> R-Studio stops at the first found file. </td></tr> <tr><td width=20% valign=top style='border:solid windowtext 1.0pt'> Mark matched files </td><td width=80% valign=top style='border:solid windowtext 1.0pt'> R-Studio marks all found files. </td></tr> <tr><td width=20% valign=top style='border:solid windowtext 1.0pt'> Unmark matched files </td><td width=80% valign=top style='border:solid windowtext 1.0pt'> R-Studio unmarks all found files. </td></tr> </table> <p class="text"> Please note that when performing a new find and mark/unmark task, R-Studio does not takes into consideration the previous marked/unmarked state of files. For example, if you first mark all <i>doc</i> files, and then all <i>txt</i> files, all <i>doc</i> files remain marked, too. To unmark them, you should specify <i>doc</i> once again and select <i>Unmark matched files</i>. </p> <p class="text"> <b>If You Do Not Find Files That You Want to Recover</b><br/> Sometimes R-Studio can find the files but not the entire file paths to them. It puts such files into the <i>Extra Found Files</i> folder. Try to search for the files there. If that does not help, try to find them by using file search globally on the entire disk. </p> <p class="text"> The <i>Advanced</i> tab allows you to apply time and size parameters for the search pattern.<br/> <img class="big" style='text-align: center' src="/Disk_Recovery_Articles/Emergency_File_Recovery/Emergency_File_Recovery_findmark1.png" width="269" height="229" alt="Find/Mar dialog box - Advanced"/><br/> <i>Click image to enlarge</i> </p> <p class="text"> If necessary, see more details in R-Studio online help: <a rel="noopener" target="_blank" href="https://www.r-studio.com/Unformat_Help/findafile.html">Searching for a File</a>. </p> <p class="text"> The <i>Find Results</i> panel appears if <i>Find All Files</i> is selected on the <i>Find/Mark Mode</i> drop-down list, or you may turn it on manually from the View -> Find Results menu. <br/> <img class="big" style='text-align: center' src="/Disk_Recovery_Articles/Emergency_File_Recovery/Emergency_File_Recovery_FindRes.png" width="586" height="440" alt="Find Results panel"/><br/> <i>Click image to enlarge</i> </p> <p class="text"> A shortcut menu is available on this panel with most important data recovery commands. You may reach this menu by right-clicking a file on the panel. </p> <p class="text"> You may estimate the chances of recovering files by using the built-in graphic previewer. Just double-click a selected file, be it a deleted or existing one. The previewer supports most graphic formats.<br/> <img class="big" style='text-align: center' src="/Disk_Recovery_Articles/Emergency_File_Recovery/Emergency_File_Recovery_preview.png" width="586" height="440" alt="Preview"/><br/> <i>Click image to enlarge</i> </p> <p class="text"> If you&#39;ve found all the files that you want and are satisfied with their preview results, you may activate your R-Studio Emergency if it&#39;s running in the Demo mode. That will not affect any obtained information; you may continue file recovery right after entering the Activation Code. Go to the R-Studio Emergency activation section for detailed instructions. </p> <p class="text"> Once you&#39;ve selected all files to recover, click the <i>Recover Marked</i> button. The <i>Recover</i> dialog box will appear:<br/> <img class="big" style='text-align: center' src="/Disk_Recovery_Articles/Emergency_File_Recovery/Emergency_File_Recovery_RecoverDB1.png" width="330" height="197" alt="Recover dialog box"/><br/> <br/> <i>Click image to enlarge</i> </p> <p class="text"> Specify the recovery options. The table below shows the most important ones. You may leave the rest at their defaults. If you want to learn more about them, see the R-Studio online help: <a rel="noopener" target="_blank" href="https://www.r-studio.com/Unformat_Help/basicfilerecovery.html">Recover options</a>. </p> <table border=1 cellspacing=0 cellpadding=3 class="articles920"> <tr><td width=20% valign=top style='border:solid windowtext 1.0pt'> If this check box is selected </td><td width=80% valign=top style='border:solid windowtext 1.0pt'> R-Studio recovers </td></tr> <tr><td width=20% valign=top style='border:solid windowtext 1.0pt'> Restore folder structure </td><td width=80% valign=top style='border:solid windowtext 1.0pt'> The entire path to the selected object. </td></tr> <tr><td width=20% valign=top style='border:solid windowtext 1.0pt'> Restore from root </td><td width=80% valign=top style='border:solid windowtext 1.0pt'> The entire path to the selected object, starting from the root folder of the disk. </td></tr> <tr><td width=20% valign=top style='border:solid windowtext 1.0pt'> Recover real folder structure </td><td width=80% valign=top style='border:solid windowtext 1.0pt'> The folder/folder structure as it really occurs on the disk rather than in the way you have sorted your searches. Enabled when the files are sorted by their extensions or date. </td></tr> <tr><td width=20% valign=top style='border:solid windowtext 1.0pt'> Ignore file mask </td><td width=80% valign=top style='border:solid windowtext 1.0pt'> All content of a selected folder, ignoring a specified file mask </td></tr> <tr><td width=20% valign=top style='border:solid windowtext 1.0pt'> Skip files with bad sectors </td><td width=80% valign=top style='border:solid windowtext 1.0pt'> If this check box is selected, R-Studio skips files with bad sectors and lists them on the <i>Files with bad sectors</i> dialog box when the recovery has been completed. You may separately decide later what to do with those files. </td></tr></table> <p class="text"> If this check box is cleared, R-Studio tries to read those sectors several times (specified on the <i>Settings/Bad Sectors</i> dialog box) and, if it cannot read them, fills bad sectors in the recovered file with the pattern specified on the same box. Information about such files will appear in the Log panel. </p> <p class="text"> You may see more information in the R-Studio online help:<a rel="noopener" target="_blank" href="https://www.r-studio.com/Unformat_Help/bad_sectors.html">Bad Sectors</a>. </p> <p class="text"> Then you need to specify a destination for storing recovered files. Click the <i>Select</i> button.<br/> <img class="big" style='text-align: center' src="/Disk_Recovery_Articles/Emergency_File_Recovery/Emergency_File_Recovery_recoverdb3f.png" width="437" height="253" alt="Place for recovered files"/><br/> <i>Click image to enlarge</i> </p> <p class="text"> You may select either an external USB hard drive (C:) or a network drive. When selecting the destination, please pay attention to the <i>Mode</i> column. It should be RW (Read and Write) to be able to store the recovered files. </p> <p class="text"> Let&#39;s select the NET_DRIVE_1 and the ./Recovered_Files/ folder on it. </p> <p class="text"> If you are going to recover many files, you should specify some options for mass file recovery on the <i>Advanced</i> tab.<br/> <img class="big" style='text-align: center' src="/Disk_Recovery_Articles/Emergency_File_Recovery/Emergency_File_Recovery_recoverdb5.png" width="330" height="197" alt="Recover dialog box - Advanced"/><br/> <i>Click image to enlarge</i> </p> <p class="text"> File Already Exists: These options instruct R-Studio what to do if there already exists a file with the same name. </p> <table border=1 cellspacing=0 cellpadding=3 class="articles920"> <tr><td width=20% valign=top style='border:solid windowtext 1.0pt'> If this option is selected </td><td width=80% valign=top style='border:solid windowtext 1.0pt'> </td></tr> <tr><td width=20% valign=top style='border:solid windowtext 1.0pt'> Prompt </td><td width=80% valign=top style='border:solid windowtext 1.0pt'> R-Studio asks the user what to do for each such file. It stops file recovery until it receives the answer. </td></tr> <tr><td width=20% valign=top style='border:solid windowtext 1.0pt'> Rename </td><td width=80% valign=top style='border:solid windowtext 1.0pt'> R-Studio adds a File ID to the file name. If a file already exists with the same name and that file ID, a number will be added to the file name and file ID. </td></tr> <tr><td width=20% valign=top style='border:solid windowtext 1.0pt'> Overwrite </td><td width=80% valign=top style='border:solid windowtext 1.0pt'> R-Studio overwrites the old file with the new one. </td></tr> <tr><td width=20% valign=top style='border:solid windowtext 1.0pt'> Skip </td><td width=80% valign=top style='border:solid windowtext 1.0pt'> R-Studio skips all new files with the same name leaving the old one. </td></tr> </table> <p class="text"> Broken File Name: These options instruct R-Studio what to do if a file to be recovered appears to have an invalid name. </p> <table border=1 cellspacing=0 cellpadding=3 class="articles920"> <tr><td width=20% valign=top style='border:solid windowtext 1.0pt'> If this option is selected </td><td width=80% valign=top style='border:solid windowtext 1.0pt'> </td></tr> <tr><td width=20% valign=top style='border:solid windowtext 1.0pt'> Prompt </td><td width=80% valign=top style='border:solid windowtext 1.0pt'> R-Studio shows the standard <i>Broken File Name</i> dialog box for each file with a broken file name. It stops file recovery until it receives the answer. </td></tr> <tr><td width=20% valign=top style='border:solid windowtext 1.0pt'> Rename and change all invalid symbols to: </td><td width=80% valign=top style='border:solid windowtext 1.0pt'> R-Studio changes all invalid characters to the character specified. </td></tr> <tr><td width=20% valign=top style='border:solid windowtext 1.0pt'> Skip </td><td width=80% valign=top style='border:solid windowtext 1.0pt'> If this option is selected, R-Studio skips all files with broken file names. </td></tr> </table> <p class="text"> Hidden Attribute: These options instruct R-Studio what to do if a file to be recovered appears to have a hidden attribute. Such attribute may make the file invisible in Windows Explorer. </p> <p class="text"> When all file recovery settings are specified, click the <i>OK</i> button. R-Studio will start file recovery, showing the progress.<br/> <img class="big" style='text-align: center' src="/Disk_Recovery_Articles/Emergency_File_Recovery/Emergency_File_Recovery_Recovering.png" width="586" height="440" alt="Recovery progress"/><br/> <i>Click image to enlarge</i> </p> <p class="text"> The <i>Log</i> panel will show results of file recovery. </p> <p class="text"> We&#39;ve finished file recovery from the existing logical disk Partition2. </p> <p class="text"> <b>File Recovery from a Damaged Logical Disk/Partition</b><br/> Now we&#39;ll continue file recovery and recover files from the damaged logical disk Partition1. </p> <p class="text"> First you need to have R-Studio scan the partition in order to find which information on the partition remains on the disk. When the scan is finished, R-Studio will show you one or several recognized partitions so you can choose the right one and recover files from it as it&#39;s been described in the <b> File recovery from an existing logical disk/partition section</b>. </p> <p class="text"> To scan the partition, <br/> Right-click the partition to be scanned and specify the required scan parameters on the <i>Scan</i> dialog box.<br/> <img class="big" style='text-align: center' src="/Disk_Recovery_Articles/Emergency_File_Recovery/Emergency_File_Recovery_scandialogbox.png" width="351" height="258" alt="Scan dialog box"/><br/> <i>Click image to enlarge</i> </p> <table border=1 cellspacing=0 cellpadding=3 class="articles920"> <tr><td width=20% valign=top style='border:solid windowtext 1.0pt'> Disk size: </td><td width=80% valign=top style='border:solid windowtext 1.0pt'> Shows the size of the object to be scanned </td></tr> <tr><td width=20% valign=top style='border:solid windowtext 1.0pt'> Start: </td><td width=80% valign=top style='border:solid windowtext 1.0pt'> Sets the start point of the area to be scanned </td></tr> <tr><td width=20% valign=top style='border:solid windowtext 1.0pt'> Size: </td><td width=80% valign=top style='border:solid windowtext 1.0pt'> Sets the size of the area to be scanned </td></tr> </table> <p class="text"> By default, R-Studio selects these numbers to match the entire object to be scanned. This is the best choice when we scan for <a rel="noopener" target="_blank" href="https://www.r-studio.com/What-is-Raw-File-Recovery.html">Known File Types</a> (see below). </p> <p class="text"> File System: Specifies the file systems whose objects are to be searched for. </p> <p class="text"> The current version of R-Studio supports: FAT, NTFS, exFAT, Ext2/3/4FS, HFS, and UFS file systems.<br/> Please note that if you need to scan an HFS, HFS+, or HFSX disk, you must always enable the <i>Extra Search for Known File Types</i> option. This is very important because when files are being deleted on the HFS, HFS+, or HFSX file systems, the computer completely removes all system information on them, and there is no way to recover the deleted files except by using the Extra Search for Known File Types option. For more details, see the R-Studio online help: <a rel="noopener" target="_blank" href="https://www.r-studio.com/Unformat_Help/data_recovery_on_hfshfs_file_s.html">Data Recovery on HFS/HFS+ file system</a>. For our case, select the NTFS and FAT file systems. </p> <p class="text"> Save scan Info to File: If this check box is selected, R-Studio will save scan information to a specified file. This option does not save actual disk data, only information on disk data structure gathered during disk scan. </p> <p class="text"> We recommend you always save scan information in case you have to temporarily stop data recovery and turn the computer off. This file may be opened later and you won&#39;t have to rescan the disk once again. </p> <p class="text"> When you select <i>Save scan Info to File</i>, a warning message will appear:<br/> <img class="big" style='text-align: center' src="/Disk_Recovery_Articles/Emergency_File_Recovery/Emergency_File_Recovery_scaninfowarning.png" width="351" height="105" alt="Saving scan information"/><br/> <i>Click image to enlarge</i> </p> <p class="text"> Click the <i>Continue</i> button and select the place to store the scan information. In this example, this file is stored on the external USB disk. </p> <p class="text"> <b>NEVER TRY TO SAVE SCAN INFORMATION ON THE OBJECT BEING SCANNED!!!</b><br/> Doing so may produce unpredictable results, and you may lose all your data. </p> <p class="text"> Leave the rest of the options as they are. If you want to learn more about them, see the R-Studio online help: <a rel="noopener" target="_blank" href="https://www.r-studio.com/Unformat_Help/discscan.html">Disk Scan</a>. </p> <p class="text"> <b>Scanning for Known File Types</b><br/> This is a very useful feature for file recovery from deleted or reformatted partitions. While scanning, R-Studio can recognize to which particular file type the data belong. Using that information, R-Studio can find more files to recover. Those found files appear in the <i>Extra Found Files</i> folder in the scan result.<br/> By default, R-Studio tries to recognize the default list of supported file types, greatly increasing time required for the scan. You may reduce it by selecting only those file types that you need. Click the <i>Known File Types...</i> button and select the required file types on the <i>File Types</i> dialog box.<br/> <img class="big" style='text-align: center' src="/Disk_Recovery_Articles/Emergency_File_Recovery/Emergency_File_Recovery_knownfiletypes.png" width="363" height="198" alt="Known file types dialog box"/><br/> <i>Click image to enlarge</i> </p> <p class="text"> These selections will be applied to that scan session only. </p> <p class="text"> You may see the list of supported Known File Types on the R-Studio online help: Known File Types.<br/> You may create your own Known File Types for files not in the list. See the R-Studio online help: <a rel="noopener" target="_blank" href="https://www.r-studio.com/Unformat_Help/customizing_file_types.html">Customizing File Types</a> and our article <a rel="noopener" target="_blank" href="https://www.r-studio.com/creating-custom-file-type-r-studio.html">Creating a Custom Known File Type for R-Studio</a>. </p> <p class="text"> When you&#39;re ready with the scan parameters, click the <i>Scan button</i>. R-Studio will start scanning. When it finishes the scan, it will show the recognized partitions it&#39;s found on the disk. <br/> <img class="big" style='text-align: center' src="/Disk_Recovery_Articles/Emergency_File_Recovery/Emergency_File_Recovery_MainPanScan.png" width="586" height="440" alt="Scan information and results"/><br/> <i>Click image to enlarge</i> </p> <p class="text"> R-Studio shows them in different colors depending on which elements of the partition have been found. </p> <table border=1 cellspacing=0 cellpadding=3 class="articles920"> <tr><td width=15% valign=top style='border:solid windowtext 1.0pt'> <img style="text-align: left;" src="/Disk_Recovery_Articles/Emergency_File_Recovery/pdisk.png" alt="Existing logical disk" width="85" height="15"/> </td><td width=65% valign=top style='border:solid windowtext 1.0pt'> This represents an existing logical disk or partition. </td></tr> <tr><td width=15% valign=top style='border:solid windowtext 1.0pt'> <img style="text-align: left;" src="/Disk_Recovery_Articles/Emergency_File_Recovery/pgreen.png" alt="Partition with both boot record and file entries" width="122" height="15"/> </td><td width=65% valign=top style='border:solid windowtext 1.0pt'> Both boot records and file entries are found for this partition. </td></tr> <tr><td width=15% valign=top style='border:solid windowtext 1.0pt'> <img style="text-align: left;" src="/Disk_Recovery_Articles/Emergency_File_Recovery/pellow.png" alt="Partition with file entries" width="121" height="15"/> </td><td width=65% valign=top style='border:solid windowtext 1.0pt'> Only file entries are found for this partition. </td></tr> <tr><td width=15% valign=top style='border:solid windowtext 1.0pt'> <img style="text-align: left;" src="/Disk_Recovery_Articles/Emergency_File_Recovery/pred.png" alt="Partition with boot record" width="127" height="15"/> </td><td width=65% valign=top style='border:solid windowtext 1.0pt'> Only boot records are found for this partition. </td></tr> <tr><td width=15% valign=top style='border:solid windowtext 1.0pt'> <img style="text-align: left;" src="/Disk_Recovery_Articles/Emergency_File_Recovery/pempspace.png" alt="Empty space" width="112" height="15"/> </td><td width=65% valign=top style='border:solid windowtext 1.0pt'> This represents the empty space on the object. </td></tr> </table> <p class="text"> To successfully recover files from a recognized partition, it is necessary to find one that corresponds correctly to the real logical disk on which the files resided. No strict rules can be applied to that, but the following tips should be taken into account: </p> <ul class="article"> <li>If you are going to recover files from a disk with a damaged file system, most likely the right recognized partition will be one coded in green.</li> <li>If you are going to recover files from a previously deleted or reformatted partition, most likely the right recognized partition will be one coded in yellow.</li> </ul> <p class="text"> Also, always check the recognized partition&#39;s file system, start point, and size. These characteristics should be the same for both the recognized partition and real logical disk/partition. When in doubt, try to preview a couple of files from the recognized partition. If the files are seen correctly, this is the right partition. </p> <p class="text"> In our example, we have only one Recognized0, so the choice is easy. </p> <p class="text"> Double-click Recognized0. R-Studio will enumerate files on this recognized partition and show found files and folders.<br/> <img class="big" style='text-align: center' src="/Disk_Recovery_Articles/Emergency_File_Recovery/Emergency_File_Recovery_FileFoldScan.png" width="586" height="440" alt="Recognized partition"/><br/> <i>Click image to enlarge</i> </p> <p class="text"> Mark files to recover, as you did when recovering files from the existing logical disk. <br/> If you cannot find files on the Recognized0 partition, then go back to the <i>Device view</i> panel, click <i>Extra Found Files</i>, and select those file types you want to recover. You may preview graphical files to be sure that you select the correct files and that they can be recovered.<br/> <img class="big" style='text-align: center' src="/Disk_Recovery_Articles/Emergency_File_Recovery/Emergency_File_Recovery_ExtraFoundFiles.png" width="586" height="440" alt="Extra found files"/><br/> <i>Click image to enlarge</i> </p> <p class="text"> Please note that file names cannot be recovered when extra found files are recovered and you can successfully recover only unfragmented files. </p> <p class="text"> Then click the <i>Recover Marked</i> button, specify the recover options on the <i>Recover</i> dialog box as you did when recovering files from the existing logical disk, and click the <i>OK</i> button.<br/> <img class="big" style='text-align: center' src="/Disk_Recovery_Articles/Emergency_File_Recovery/Emergency_File_Recovery_recoverscan.png" width="330" height="197" alt="Recover dialog box"/><br/> <i>Click image to enlarge</i> </p> <p class="text"> Please note that in this example, we selected the /Recovered_Files/ folder on the external USB hard drive to store the recovered files. </p> <p class="text"> R-Studio will start recovering marked files.<br/> <img class="big" style='text-align: center' src="/Disk_Recovery_Articles/Emergency_File_Recovery/Emergency_File_Recovery_RecoverProc.png" width="586" height="440" alt="Recovery progress"/><br/> <i>Click image to enlarge</i> </p> <p class="text"> When it finishes file recovery, R-Studio will show the results in its Log panel. </p> <p class="text"> <b>Computer Shutdown</b><br/> When you finish file recovery, remove the CD disc or USB disk, and turn your computer off manually. </p> <p class="text"> If you want to restart your computer, select <i>Exit</i> on the <i>Drive</i> menu, and click the <i>OK</i> button on the warning message.<br/> <img class="big" style='text-align: center' src="/Disk_Recovery_Articles/Emergency_File_Recovery/shut1.png" width="326" height="72" alt="Computer shutdown message"/><br/> <i>Click image to enlarge</i> </p> <p class="text"> R-Studio will restart your computer. </p> <p class="text"> <a name="Image"><b>Working with Images</b></a><br/> Images are exact, byte-by-byte copies of any objects on the <i>Drives</i> panel. When created, images can be processed like their original objects. </p> <p class="text"> Images are very useful if there is a risk of total data loss due to hardware malfunction. If bad blocks are constantly appearing on a hard drive, you must immediately create an image of this drive. All data search, scan, and restoring can be done from this image. In addition, such images can be used to recover a disk after a computer crash, or for <a rel="noopener" target="_blank" href="https://www.drive-image.com/Disk_Cloning_and_Mass_System_Deployment.shtml">easy system migration</a>. </p> <p class="text"> You may create images anyplace that&#39;s bigger than the size of the object. The only exception is the object whose image you want to create. NEVER TRY TO SAVE IMAGES OF RECOVERED FILES/FOLDERS TO THE SAME LOGICAL DISK WHERE THEY RESIDE!!! Otherwise, you may obtain unpredictable results and lose all your data. </p> <p class="text"> An image can be opened in R-Studio, and files can be recovered from the opened image in the same way as from the original object. </p> <p class="text"> <b>How to Create an Image</b><br/> 1. Select an object on the R-Studio&#39;s <i>Drives</i> panel and click the <i>Create Image</i> button.<br/> <img class="big" style='text-align: center' src="/Disk_Recovery_Articles/Emergency_File_Recovery/Emergency_File_Recovery_Image1.png" width="586" height="440" alt="Creating image"/><br/> <i>Click image to enlarge</i> </p> <p class="text"> 2. Specify image options, a file name, and destination for the image on the <i>Create Image</i> dialog box. Note: To store an image file, you need a free space equal to at least the object size.<br/> <img class="big" style='text-align: center' src="/Disk_Recovery_Articles/Emergency_File_Recovery/Emergency_File_Recovery_Image2.png" width="359" height="247" alt="Create Image dialog box"/><br/> <i>Click image to enlarge</i> </p> <table border=1 cellspacing=0 cellpadding=3 class="articles920"> <tr><td width=20% valign=top style='border:solid windowtext 1.0pt'> Image filename </td><td width=80% valign=top style='border:solid windowtext 1.0pt'> Specifies the name and path for the image file. You may use both local and network drives to store images. See the <a href="#Network"><b>Network Setup</b></a> section for more details on connecting network drives. </td></tr> <tr><td width=20% valign=top style='border:solid windowtext 1.0pt'> Byte to byte image </td><td width=80% valign=top style='border:solid windowtext 1.0pt'> If this option is selected, R-Studio will create a simple exact copy of the object. This image format is compatible with the previous versions of R-Studio </td></tr> <tr><td width=20% valign=top style='border:solid windowtext 1.0pt'> Compressed image (R-Drive Image compatible) </td><td width=80% valign=top style='border:solid windowtext 1.0pt'> If this option is selected, R-Studio will create an image file that can be compressed, split into several parts, and password protected. This is fully compatible with the images created by <a rel="noopener" target="_blank" href="https://www.drive-image.com/backup_software.shtml">R-Drive Image</a>. </td></tr> <tr><td width=20% valign=top style='border:solid windowtext 1.0pt'> Compression ratio </td><td width=80% valign=top style='border:solid windowtext 1.0pt'> You may compress the data in the image to save space. Active only if the option Compressed Image (R-Drive Image compatible) is selected. </td></tr> <tr><td width=20% valign=top style='border:solid windowtext 1.0pt'> Estimated size </td><td width=80% valign=top style='border:solid windowtext 1.0pt'> Shows the estimated size of the image file. An actual image size depends on how much empty space is on the selected partition and what file types are there. Active only if the option Compressed Image (R-Drive Image compatible) is selected. </td></tr> <tr><td width=20% valign=top style='border:solid windowtext 1.0pt'> Image split size </td><td width=80% valign=top style='border:solid windowtext 1.0pt'> You may set this option to Automatic and let Windows decide how to split the image file. This mostly depends on the file system on the destination disk. With the Fixed option, you may also either explicitly specify the split size, or choose a preset for various devices with removable storage. Active only if the option Compressed Image (R-Drive Image compatible) is selected. </td></tr> <tr><td width=20% valign=top style='border:solid windowtext 1.0pt'> Image password </td><td width=80% valign=top style='border:solid windowtext 1.0pt'> You may protect your image file with a password. Note: This feature provides relatively moderate protection against conventional unauthorized access. Active only if the option Compressed Image (R-Drive Image compatible) is selected. </td></tr> </table> <p class="text"> <img class="big" style='text-align: center' src="/Disk_Recovery_Articles/Emergency_File_Recovery/Emergency_File_Recovery_Image3.png" width="359" height="247" alt="Create Image dialog box - Advanced"/><br/> <i>Click image to enlarge</i> </p> <table border=1 cellspacing=0 cellpadding=3 class="articles920"> <tr><td width=20% valign=top style='border:solid windowtext 1.0pt'> Read attempts </td><td width=80% valign=top style='border:solid windowtext 1.0pt'> Specifies a value for I/O Tries, or how many times R-Studio will try to read a bad sector. </td></tr> <tr><td width=20% valign=top style='border:solid windowtext 1.0pt'> Pattern to fill bad blocks </td><td width=80% valign=top style='border:solid windowtext 1.0pt'> Specifies a pattern R-Studio will use to fill bad sectors in this image. You may specify the pattern either in the ANSI or Hex data format.<br/> Note: R-Studio will never, ever try to write anything to the disk from which data is to be recovered or an image is to be created. This pattern fills bad sectors only in the image. </td></tr> </table><br/> <p class="text"> <img class="big" style='text-align: center' src="/Disk_Recovery_Articles/Emergency_File_Recovery/Emergency_File_Recovery_Image4.png" width="586" height="440" alt="Image creation progress"/><br/> <i>Click image to enlarge</i> </p> <p class="text"> R-Studio will start creating the image, the progress bar showing the progress. </p> <p class="text"> <b>How to Open an Image</b><br/> 1. Click the Open Image button:<br/> <img class="big" style='text-align: center' src="/Disk_Recovery_Articles/Emergency_File_Recovery/Emergency_File_Recovery_Image5.png" width="586" height="440" alt="Opening image"/><br/> <i>Click image to enlarge</i> </p> <p class="text"> 2. Select the required image file:<br/> <img class="big" style='text-align: center' src="/Disk_Recovery_Articles/Emergency_File_Recovery/Emergency_File_Recovery_Image6.png" width="586" height="440" alt="Image place"/><br/> <i>Click image to enlarge</i> </p> <p class="text"> An Image object will appear on the <i>Drives</i> panel:<br/> <img class="big" style='text-align: center' src="/Disk_Recovery_Articles/Emergency_File_Recovery/Emergency_File_Recovery_Image7f.png" width="586" height="440" alt="Opened image"/><br/> <i>Click image to enlarge</i> </p> <p class="text"> You may perform all data search, scan, and recovery from this image as if it were a regular drive/disk object. </p> <p class="text"> <a name="Activ"><b>R-Studio Emergency Activation</b></a><br/> You need to activate your copy of R-Studio Emergency to save recovered files. Without activation (if you click the Cancel button on the Activation dialog box), R-Studio Emergency will work in its Demo mode. In this mode it can perform any data recovery operation, except working on network and saving recovered files. But you may preview files to estimate the chances of recovering them. </p> <p class="text"> To activate your copy of R-Studio Emergency, write down the computer&#39;s hardware code. Please note that this hardware code is unique for each computer. If you start R-Studio Emergency on another one, the hardware code will be different. </p> <p class="text"> You may obtain the computer&#39;s Activation Code on the R-TT Web site. Using the Internet-connected computer, connect to the Registered User&#39;s Console, enter the required user data, and click the <i>Submit</i> button. </p> <p class="text"> <img class="big" style='text-align: center' src="/Disk_Recovery_Articles/Emergency_File_Recovery/RegCons.png" width="586" height="228" alt="Registered User&#39;s console"/><br/> <i>Click image to enlarge</i> </p> <p class="text"> You must fill in at least three fields to enter the Registered User&#39;s Console. </p> <p class="text"> Then click the <i>R-Studio Emergency Activation Code</i> button. </p> <p class="text"> <img class="big" style='text-align: center' src="/Disk_Recovery_Articles/Emergency_File_Recovery/RegCons1.png" width="307" height="198" alt="Registered User&#39;s console"/><br/> <i>Click image to enlarge</i> </p> <p class="text"> <img class="big" style='text-align: center' src="/Disk_Recovery_Articles/Emergency_File_Recovery/RegCons2.png" width="586" height="88" alt="Activation code"/><br/> <i>Click image to enlarge</i> </p> <p class="text"> Please note that the R-Studio is licensed per machine, not per user, and you may generate a computer&#39;s Activation Code for licensed computers only. An R-Studio license cannot be transferred to another computer after the software has been installed or run and registered. So you should enter the Hardware Code of the computer to be licensed only. </p> <p class="text"> <img class="big" style='text-align: center' src="/Disk_Recovery_Articles/Emergency_File_Recovery/RegCons3.png" width="586" height="48" alt="Activation code"/><br/> <i>Click image to enlarge</i> </p> <p class="text"> Write down the Activation Code, and store it in a safe place. Possibly the best place to store the Activation Code is to write it to a CD/DVD disc. Every time you start R-Studio Emergency, you&#39;ll need to enter it during activation. </p> <p class="text"> You may enter the Activation Code on the <i>R-Studio Emergency Demo Activation</i> dialog box during startup or, while working, by selecting <i>Activate</i> on the <i>Help</i> menu.<br/> <img class="big" style='text-align: center' src="/Disk_Recovery_Articles/Emergency_File_Recovery/Emergency_File_Recovery_activationfin.png" width="313" height="226" alt="Entering Activation code"/><br/> <i>Click image to enlarge</i> </p> <p class="text"> R-Studio Emergency will show that the registration is successful:<br/> <img class="big" style='text-align: center' src="/Disk_Recovery_Articles/Emergency_File_Recovery/Emergency_File_Recovery_activationfin1.png" width="133" height="68" alt="Registration successfull message"/><br/> <i>Click image to enlarge</i> </p> <p class="text"> Now you can use R-Studio Emergency to its fullest capability. </p> <p class="text"> <a name="Network"><b>Network Setup</b></a><br/> You may use both DHCP and manual configuration to obtain an IP address for the computer running R-Studio Emergency. </p> <p class="text"> To start network configuration, select <i>Network configuration</i> on the <i>Tools</i> menu. </p> <p class="text"> The <i>Network configuration</i> dialog box will appear and R-Studio automatically will start acquiring a network address using DHCP. The <i>Log</i> panel will show the <i>Network adapter configuration started</i> message.<br/> <img class="big" style='text-align: center' src="/Disk_Recovery_Articles/Emergency_File_Recovery/Emergency_File_Recovery_startupnetconfig.png" width="235" height="201" alt="Automatic network configuration"/><br/> <i>Click image to enlarge</i> </p> <p class="text"> You may cancel this process by selecting <i>Configure manually</i>. Then you need to enter the address manually. If your computer has several network interfaces, you may select which interface is to be used.<br/> Once the network address is obtained, it appears on the dialog box, and the <i>Log</i> panel will show the <i>Network adapter configuration completed</i> message.<br/> If R-Studio fails to obtain the address, the log will show the <i>Network adapter configuration failed</i> message. In that event, you have to either enter the address manually or fix a possible network problem. </p> <p class="text"> Then you need to specify a network share to which the data will be saved. Select <i>Map network drive</i> on the <i>Tools</i> menu. The <i>Map network drive</i> dialog box will appear.<br/> <img class="big" style='text-align: center' src="/Disk_Recovery_Articles/Emergency_File_Recovery/Emergency_File_Recovery_startupnetdrive.png" width="203" height="122" alt="Manual netowrk configuration"/><br/> <i>Click image to enlarge</i> </p> <p class="text"> Enter the necessary data, and click <i>OK</i>. The <i>Log</i> panel will show the <i>Mount network drive started</i> message. When the drive is connected, the <i>Log</i> panel will show the <i>Mount network drive completed</i> message. </p> <p class="text"> If R-Studio fails to connect the network drive, the <i>Log</i> panel will show the <i>Mount network drive failed</i> message. You&#39;ll need to correct the network problem and try to connect the network drive once again. </p> </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&#39;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"> Data Recovery Feedback </div> <div class="feedbacks-meta"> <span itemscope itemtype="http://schema.org/LocalBusiness"> <meta itemprop="name" content="www.r-studio.com"> <meta itemprop="url" content="https://www.r-studio.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">372</span> <a href="/data-recovery-feedback/">feedbacks</a> <br /> Rating: <span itemprop="ratingValue">4.8</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=Data%20Recovery" 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 have used R-studio with USB Stabilizer,Rapid-spar,Deep spar, Pc3000, MRT.I am thoroughly satisfied.Now i have made head maps to isolate bad heads of hard disk when used with mounted disks. </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="/data-recovery-feedback/">Simran Arora (Data recovery factory mumbai)</a> </span> </div> </div> <div class="feedbacks-item"> <div class="feedbacks-text"><div> I was completely lost. My Mac seemed to have eaten my 4TB external USB drive - was formatted APFS encrypted. The volume just disappeared while running and I had to reboot and when it came back the volume could not be unlocked / mounted natively. I tried a whole heap of methods (https://github.com/libyal/libfsapfs/, drat and many others) to no avail. R-Studio data recovery was able to recover the entire volume - a complete life saver, worth every cent! </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="/data-recovery-feedback/">James Haworth-Wood (EADIT Security Solutions)</a> </span> </div> </div> <div class="feedbacks-item"> <div class="feedbacks-text"><div> I really love your R-Studio product, I am doing Data Recovery as a professional, I used RS since the early versions and I loved the product, as far as I can tell, R-Studio, especially the Tech Version (but including the standard) is one of the best and excellent tools for a pro to have in the arsenal of tools in a pro DR lab, especially combining with the specialized Data Recovery hardware providers like DeepSpar, and PC3000, the rest of `wannabees` out there are waste of time, strongly recommend </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="/data-recovery-feedback/">Michael Avraham (OmniDataPlus Data recovery and repair)</a> </span> </div> </div> <div class="feedbacks-item"> <div class="feedbacks-text"><div> I lost more than 200K files from my NAS due to a mistake. I tried 3 different recovery solutions over the 4 TB raid disks, and all of them performed ok but to be honest none of them were able to Raw recover the files and rename them with meaningful names out of the Metadata like R-TT did, then I was able to sort again my files and pictures and kind of restore all of them. <br /> <br />R-TT may not be the easiest or most user-friendly solution, but the algorithm used for the renaming saved me THOUSAND of hours of opening ... </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="/data-recovery-feedback/">Cesar reyes</a> </span> </div> </div> <div class="feedbacks-item"> <div class="feedbacks-text"><div> Just recovered my old ext4 partition with R-Studio after trying testdisk and R-Linux without success. That partition was overwritten by another ext4 partition and I was losing my hope until I tried R-Studio demo. It detected all my files and directories again! <br /> <br />Bought it and 100% recommend it for anyone with a similar issue. </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="/data-recovery-feedback/">Edgar Endo</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.r-studio.com/Terms_Of_Use.shtml">Terms of Use</a></li> <li id="nfm_2"><a href="https://www.r-studio.com/Privacy_Policy.shtml">Privacy Policy</a></li> <li id="nfm_3"><a target=&quot;_blank&quot; href="https://www.r-tt.com/RTTInfo.shtml">Contact Us</a></li> <li id="nfm_4"><a target=&quot;_blank&quot; href="https://www.r-tt.com/Feedback.shtml">Feedback</a></li> <li id="nfm_5"><a href="https://www.r-studio.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=13">R-Studio Forum</a></li> </ul> </div> <div class="clearthis"></div> <div class="footer-copyright"> &copy; 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.&nbsp;&nbsp;&nbsp;<a href="https://www.r-studio.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>

Pages: 1 2 3 4 5 6 7 8 9 10