<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>kindawannadothat &#187; Disaster recovery</title>
	<atom:link href="http://www.kindawannadothat.com/category/data-recovery/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.kindawannadothat.com</link>
	<description>home network, small network</description>
	<lastBuildDate>Tue, 01 Jun 2010 06:39:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>MySQL backup on Ubuntu &#124; Debian</title>
		<link>http://www.kindawannadothat.com/2009/07/mysql-backup-on-ubuntu-debian/</link>
		<comments>http://www.kindawannadothat.com/2009/07/mysql-backup-on-ubuntu-debian/#comments</comments>
		<pubDate>Thu, 09 Jul 2009 02:54:42 +0000</pubDate>
		<dc:creator>Ted Heich</dc:creator>
				<category><![CDATA[Disaster recovery]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[database backup]]></category>
		<category><![CDATA[MySQL backup]]></category>
		<category><![CDATA[mysqldump]]></category>

		<guid isPermaLink="false">http://www.kindawannadothat.com/?p=1424</guid>
		<description><![CDATA[This guide is for Sys Admins&#8211;or people who have a bit of Sys Admin skills. While there is a plethora of database backup products for MySQL that exist, this post is not about those products. We&#8217;ll use the built-in tools of MySQL for the backup process&#8211;it is in fact, a very simple process. A simple [...]]]></description>
			<content:encoded><![CDATA[<p>This guide is for Sys Admins&#8211;or people who have a bit of Sys Admin skills. While there is a plethora of database backup products for MySQL that exist, this post is not about those products.</p>
<p>We&#8217;ll use the built-in tools of MySQL for the backup process&#8211;it is in fact, a very simple process.</p>
<h2>A simple setup</h2>
<p>If your database is on a local workstation, you can login locally, just get  a terminal (gnome-terminal, xterm, konsole, aterm .. it doesn&#8217;t really matter)</p>
<p class="command"> $ cd ~<br /> $ mysqldump -u yourusername -p &#8211;all-databases > mysql.backup</p>
<p>&#8220;cd ~&#8221; simply changes directory to your home directory, that way we have all the necessary permissions to create a file mysql.backup</p>
<p>Replace yourusername with a username defined in MySQL, <strong>it&#8217;s not the same as your shell username</strong> at least not necessarily. So you gotta know this username, if an admin set it up for you, you need to ask your admin.</p>
<p>The &#8220;&#8211;all-databases&#8221; flag will dump all the databases in MySQL to the file mysql.backup, this may not be what you need. A more targeted usage of mysqldump is</p>
<p class="command"> $ cd ~<br /> $ mysqldump -u yourusername -p NameOfDatabase > mysql.backup</p>
<p>Substitute the name of your database to NameOfDatabase above, that command will then dump all the contents, including the structure of the database into mysql.backup.</p>
<h2>The dump file</h2>
<p>The dump file (mysql.backup) actually contains the <strong>create table, insert into table</strong> instructions for your database. You can easily restore the contents of the database by simply executing the SQL script inside the dump file; for example</p>
<p class="command"> $ mysql -u YourUserName -p<br /> mysql> create database restoreddb;<br /> mysql> use restoredb;<br /> mysql> .\mysql.backup;</p>
<p>.\ takes a source file argument, if you did this, it will read all the contents of mysql.backup and will try to execute it inside the restoredb database.</p>
<p class="note"> ** The create database and use database command can actually be part of mysql.backup, but you can figure it out for yourself, I just don&#8217;t think it&#8217;s necessary to belabor that point in this guide.</p>
<h2>A client server approach</h2>
<p>MySQL is actually a client server database, which means that can run mysqldump and some other mysql tools on a workstation that is different from where the mysql server is installed. You don&#8217;t really need to perform the backup on the server box itself, use the client-server capabilities of MySQL. Here&#8217;s how;</p>
<p>On a workstation install the mysql-client tools. In Ubuntu and Debian;</p>
<p class="command"> $ sudo apt-get install mysql-client</p>
<p>Now you can use the mysql client command line from a workstation.</p>
<p class="command"> $ mysql -h IPorNameOfMySQLServer -u YourUserName -p<br /> mysql> show databases;<br /> mysql> use NameOfDatabase;<br /> mysql> show tables; <br /> mysql> quit<br /> $ mysqldump -h IPorNameOfMySQLServer -u YourUserName -p &#8211;all-databases > mysql.backup</p>
<p>There&#8217;s a bit of MySQL tinkering, you can use these commands to peek a bit into your MySQL database, just so you know what the names of the databases are and what the names of the tables in the databases are.</p>
<p>The only thing different with the client-server approach on MySQL is the use &#8220;-h IpOfMySQLServer, the rest of the command behavior is the same. By the way, the mysql.backup file will be stored on the workstation where you executed the mysql client tools, not on the server&#8211;which is quite handy actually.</p>
<h2>I can&#8217;t use mysql tools remotely, but it works if I use them on the server directly</h2>
<p>This is a privileges problem most likely, not because you can use the mysql tools locally on the server, you will automatically be able to use them from a remote workstation. This is what you need to do on the server side (where MySQL server is installed) to ensure that you can use use mysql tools from a remote workstation.</p>
<p>YOu must know the password for the &#8220;root&#8221; user of MySQL, or use a mysql username that is equivalent to root.</p>
<p class="command"> $ mysql -u root -p<br /> mysql> GRANT ALL PRIVILEGES ON yourdbnamehere.* TO UserNameHere@&#8217;%&#8217; IDENTIFIED BY &#8216;passwordhere&#8217;;<br /> mysql>flush privileges;</p>
<p>The SQL command above is pretty easy to understand, it&#8217;s almost like conversational English. Here are some notes about the command.</p>
<ul>
<li>GRANT ALL PRIVILEGES &#8211; will grant all privileges like alter, create delete, drop etc, with the exception of GRANT and OPTION; but this pretty much makes the user a very powerful one</li>
<li>yourdbnamehere.* &#8211; had you written *.* this will make the user very privileged on all the database instances defined inside the MySQL server. YourDBanamehere.* grants the user all privileges ONLY in a specific db, not all</li>
<li>UserNameHere@&#8217;%&#8217; &#8211; means that the user can login or use mysql tools from anywhere in the network; this is not good for production environment, use this only if you have too, inside a development environment. If don&#8217;t want the user be able to login remotely, but only locally, then use UserNameHere@&#8217;localhost&#8217; instead</li>
</ul>
<h2>Using remote login</h2>
<p>You could use SSH to login remotely to your database server, then login to mysql as if you&#8217;re local, then use SCP (secure copy) to copy mysql.backup from the server</p>
<p class="command"> local$ ssh shellUserName@ServerNameOrIPHere<br /> server$ cd ~<br /> server$ mysqldump -u root -p &#8211;all-databases > mysql.backup<br /> server$ exit<br /> local$ scp shellUserName@ServerNameOrIphere:/home/shellUserNameHere/mysql.backup .</p>
<p><strong>shellUserName &#8211; is your Linux shell account, this is not your MySql username</strong></p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.kindawannadothat.com/2009/11/backing-up-and-restoring-svn-repositories/" rel="bookmark" class="crp_title">Backing up and restoring SVN repositories</a></li><li><a href="http://www.kindawannadothat.com/2009/02/do-i-need-to-install-wordpress-locally/" rel="bookmark" class="crp_title">Do I need to install WordPress Locally?</a></li><li><a href="http://www.kindawannadothat.com/2009/11/change-date-setting-in-ubuntu-server-using-ntp/" rel="bookmark" class="crp_title">Change date setting in Ubuntu server using NTP</a></li><li><a href="http://www.kindawannadothat.com/2009/10/samsung-clp-315-on-ubuntu-server-9-04-jaunty-jackalope-2/" rel="bookmark" class="crp_title">Samsung CLP-315 on Ubuntu Server 9.04, Jaunty Jackalope</a></li><li><a href="http://www.kindawannadothat.com/2009/10/install-git-on-ubuntu-jaunty-jackalope/" rel="bookmark" class="crp_title">Install git on Ubuntu Jaunty Jackalope</a></li><li>Powered by <a href="http://ajaydsouza.com/wordpress/plugins/contextual-related-posts/">Contextual Related Posts</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.kindawannadothat.com/2009/07/mysql-backup-on-ubuntu-debian/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Undelete files in Windows</title>
		<link>http://www.kindawannadothat.com/2009/03/undelete-files-in-windows/</link>
		<comments>http://www.kindawannadothat.com/2009/03/undelete-files-in-windows/#comments</comments>
		<pubDate>Thu, 12 Mar 2009 01:05:06 +0000</pubDate>
		<dc:creator>Ted Heich</dc:creator>
				<category><![CDATA[Disaster recovery]]></category>
		<category><![CDATA[SOHO]]></category>
		<category><![CDATA[disk recovery]]></category>
		<category><![CDATA[Hard Drive Data Recovery]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.kindawannadothat.com/?p=485</guid>
		<description><![CDATA[The files you create in Windows are actually not as fragile as you might think, it is quite resilient if you think about it. However, no matter how resilient these files are, somehow they still get killed, inadvertently or not. But worry not, there are still ways to hard drive data recovery, some are within [...]]]></description>
			<content:encoded><![CDATA[<p>The files you create in Windows are actually not as fragile as you might think, it is quite resilient    if you think about it. However, no matter how resilient these files are, somehow they still get killed, inadvertently or not. But worry not, there are still ways to hard drive data recovery, some are within Windows reach and some are not.</p>
<p>The Windows recycle bin has probably saved lots of people from heartache, people who left the default settings of Recycle bin, that is. If you goofed around the Recycle bin settings, by accessing its properties, you&#8217;ll know that you can reduce the amount of disk space which is allocated for it (not a good idea, with the sizes of hard drives nowadays, just leave the Recycle bin alone), you&#8217;ll know also that you can turn the warnings off by selecting the option &#8220;Do not move files to the Recyle bin, remove the files immediately when deleted&#8221;  &#8212; tell me you didn&#8217;t do this please! That is your first line of defense over accidental file deletion, I&#8217;m sure some geek can think of reasons why this option was ever available, but from the point of view of data resiliency, I just can&#8217;t think of any. Just don&#8217;t do that, period.</p>
<p><span id="more-485"></span></p>
<h4>The lifecycle of a file</h4>
<ul>
<li>It&#8217;s born &#8211; when you created it.</li>
<li>It&#8217;ll die (for the firs time) &#8211; when you accidentally deleted it.</li>
<li>it&#8217;ll be resurrected to life &#8211; when you restore it from the recycle bin</li>
<li>it could die again &#8211; when you AGAIN, accidentally deleted it.</li>
<li>it could be resurrected back to its SECOND life if you could restore it using the versioning capabilities of Windows (<a href="http://www.kindawannadothat.com/2009/03/how-to-recover-deleted-files-in-windows/" target="_blank">See the post on how to use System restore to recover files</a>)</li>
<li>it could die yet again &#8211; if you deleted it, emptied the recycle bin and system restore can&#8217;t help you, at this point, it maybe beyond the reach of Windows to do data recovery, you will need tools.</li>
</ul>
<p>Now see how resilient and persistent that file is, you could kill it a number of times, but it won&#8217;t just die yet.</p>
<h4>Hard drive data recovery tools</h4>
<p>if files are really persistent, and can be resurrected back to life over and over again, why do we need disk recovery tools for? That&#8217;s a good question, which I don&#8217;t have a good answer for, but I think that even if our files are cat-like (with 9 lives that is), I&#8217;m sure there will be situations when we really will push the resiliency of our files to the limit; And when this happens, it&#8217;s good to know there are tools for the job.</p>
<p>The first thing to do when you think you&#8217;ve lost a file &#8212; that is, after you tried to restore from the Recycle bin, but failed. You tried to restore using System restore, but failed &#8212; The first thing to do, is to do NOTHING. Don&#8217;t create anymore new files, don&#8217;t run checkdisk, don&#8217;t run any other utility, in fact, shut all running applications down. Why? because, when you delete a file for the first time, it&#8217;s not actually put inside the recycle bin, it&#8217;s just hidden from view. When you restore from the Recycle bin, the file is still in it&#8217;s original location, but will now be un-hidden. When you emptied the Recycle bin, the file still is not deleted, it will be hidden again, but this time, there is a special flag in the file, it&#8217;s telling Windows that &#8220;This location is now available, I&#8217;ve just been marked as deleted permanently, so if any other file would like to use my location, feel free&#8221; &#8212; If your file and Windows could have a conversation, that maybe what you&#8217;re going to hear. That&#8217;s the reason why I told you to do nothing, don&#8217;t install anything, don&#8217;t run checkdisk, don&#8217;t create any new files &#8212; just be still for now.</p>
<p>At this point, recovery is beyond the capabilities of Windows (at least beyond the capabilities of casual users, we can talk about searching the temp files, caches, looking for the hidden file RECYCLED/INFO etc; but from experience, it doesn&#8217;t yield satisfactory results), it&#8217;s time for specialty software like <a href="http://www.diskinternals.com/">UnEraser</a> or <a href="http://undelete-plus.com/" target="_blank">Undelete</a> just to name a few. You&#8217;re going to need software if your file is going to have any fourth coming or fifth coming.</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.kindawannadothat.com/2009/03/how-to-recover-deleted-files-in-windows/" rel="bookmark" class="crp_title">How to recover deleted files in Windows using System Restore</a></li><li><a href="http://www.kindawannadothat.com/2010/05/open-rar-files-in-osx/" rel="bookmark" class="crp_title">Open rar files in OSX</a></li><li><a href="http://www.kindawannadothat.com/2009/05/working-with-hidden-files-on-the-mac/" rel="bookmark" class="crp_title">Working with hidden files on the Mac</a></li><li><a href="http://www.kindawannadothat.com/2010/05/how-to-print-from-the-command-line/" rel="bookmark" class="crp_title">How to print from the command line</a></li><li><a href="http://www.kindawannadothat.com/2009/06/working-with-hidden-files-on-the-mac-reloaded-and-then-some/" rel="bookmark" class="crp_title">Working with hidden files on the Mac &#8211; reloaded, and then some</a></li><li>Powered by <a href="http://ajaydsouza.com/wordpress/plugins/contextual-related-posts/">Contextual Related Posts</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.kindawannadothat.com/2009/03/undelete-files-in-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to recover files from a near dead hard disk</title>
		<link>http://www.kindawannadothat.com/2009/03/how-to-recover-files-from-a-near-dead-hard-disk/</link>
		<comments>http://www.kindawannadothat.com/2009/03/how-to-recover-files-from-a-near-dead-hard-disk/#comments</comments>
		<pubDate>Wed, 11 Mar 2009 13:38:28 +0000</pubDate>
		<dc:creator>Ted Heich</dc:creator>
				<category><![CDATA[Disaster recovery]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Disaster Recovery]]></category>
		<category><![CDATA[Hard Drive Data Recovery]]></category>

		<guid isPermaLink="false">http://www.kindawannadothat.com/?p=488</guid>
		<description><![CDATA[Chugging and clanking noises inside your PC?It can only mean one thing &#8212; bad things are about to happen to your data &#8212; you can bet too it&#8217;s something mechanical &#8212; your hard drive. It won&#8217;t be long now before SSD (solid state drive) will be economical enough to replace the traditional mechanical hard drive; [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.kindawannadothat.com/wp-content/uploads/2009/03/hard-drive-300x300.jpg" alt="hard drive" title="hard drive" width="300" height="300" class="alignright size-medium wp-image-1544"  style="border:none"/></p>
<p>Chugging and clanking noises inside your PC?It can only mean one thing &#8212; bad things are about to happen to your data &#8212; you can bet too it&#8217;s something mechanical &#8212; your hard drive.</p>
<p>It won&#8217;t be long now before SSD (solid state drive) will be economical enough to replace the traditional mechanical hard drive; but for now we are stuck with the ol&#8217; mechanical hard drive. Anyway, back to the chugging and clanking sound, when you hear this &#8211; <strong><span style="text-decoration: underline;"><span style="color: #ff0000;">STOP </span></span></strong>- whatever your doing and perform really quick diagnostics of your PC.</p>
<p>I hope you paid attention to the SMART alert (Self-Monitoring Analysis and Reporting), Windows does give you these alerts when it thinks that your hard drive is about to fail. SMART is a feature of hard drives which allows operating systems to perform diagnostics and predict foreseeable drive failures. If you dismiss these warnings, you&#8217;ll get a different kind of warning, the kind that chugs and clank &#8212; not all hard drives by the way, will chug and clank, sometimes they just fail without the sound effects; Let&#8217;s hope that you get ample warnings before the drive really fails.</p>
<h4>What to do for hard drive data recovery</h4>
<ol>
<li>Stop everything, stop putting more files in it, don&#8217;t install anything else; even if the ad on the Internet said &#8220;Install this magic software to revive your disk&#8221;, if it&#8217;s a mechanical failure, I really doubt how software can remedy that. Your goal right now is to salvage your data, so get on with it. Don&#8217;t even run CHKDSK or any other disk checking tool, spend whatever remaining life of your drive devoted to data recovery, you are way past repair at this point.</li>
<li>Get your self an external hard drive or a USB or you can even use that DVD Writer or CD writer to back up the info. Move everything out of the failing hard drive; or</li>
<li>If you know what you&#8217;re doing, you can remove the hard drive physically out of the PC, replace the hard drive with a new one, install the operating system fresh, then plug the old drive either as a secondary master or a slave of the first disk (if you&#8217;re using a desktop). If you are using a notebook, you can mount the old drive inside USB external drive casings, then plug it into your system, try to see if you can still recover the data.</li>
</ol>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.kindawannadothat.com/2009/03/how-to-recover-deleted-files-in-windows/" rel="bookmark" class="crp_title">How to recover deleted files in Windows using System Restore</a></li><li><a href="http://www.kindawannadothat.com/2009/03/undelete-files-in-windows/" rel="bookmark" class="crp_title">Undelete files in Windows</a></li><li><a href="http://www.kindawannadothat.com/2009/04/simple-ubuntu-server-setup/" rel="bookmark" class="crp_title">Simple Ubuntu server setup</a></li><li><a href="http://www.kindawannadothat.com/2009/01/avoid-spyware/" rel="bookmark" class="crp_title">How to Avoid spyware</a></li><li><a href="http://www.kindawannadothat.com/2009/11/backing-up-and-restoring-svn-repositories/" rel="bookmark" class="crp_title">Backing up and restoring SVN repositories</a></li><li>Powered by <a href="http://ajaydsouza.com/wordpress/plugins/contextual-related-posts/">Contextual Related Posts</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.kindawannadothat.com/2009/03/how-to-recover-files-from-a-near-dead-hard-disk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to recover deleted files in Windows using System Restore</title>
		<link>http://www.kindawannadothat.com/2009/03/how-to-recover-deleted-files-in-windows/</link>
		<comments>http://www.kindawannadothat.com/2009/03/how-to-recover-deleted-files-in-windows/#comments</comments>
		<pubDate>Wed, 11 Mar 2009 10:22:34 +0000</pubDate>
		<dc:creator>Ted Heich</dc:creator>
				<category><![CDATA[Disaster recovery]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Business Continuity]]></category>
		<category><![CDATA[Disaster Recovery]]></category>
		<category><![CDATA[Hard Drive Data Recovery]]></category>

		<guid isPermaLink="false">http://www.kindawannadothat.com/2009/03/how-to-recover-deleted-files-in-windows/</guid>
		<description><![CDATA[dontdeleteme Originally uploaded by triboxs While Windows have gone to lengths protecting your data from a lot of bad elements like worms, viruses, crashes and in fact, even from you, there are still times when Windows can only do so much. There are lots of incidents that files &#8212; important files &#8212; gets deleted still. [...]]]></description>
			<content:encoded><![CDATA[<div style="float: right; margin-left: 10px; margin-bottom: 10px;"><a href="http://www.kindawannadothat.com/2009/03/how-to-recover-deleted-files-in-windows/"><img style="border: solid 2px #000000;" src="http://farm4.static.flickr.com/3648/3345753835_5396c40de1_m.jpg" alt="" /></a></p>
<p><span style="font-size: 0.9em; margin-top: 0px;"><br />
<a href="http://www.flickr.com/photos/triboxs/3345753835/">dontdeleteme</a></p>
<p>Originally uploaded by <a href="http://www.flickr.com/people/triboxs/">triboxs</a><br />
</span></div>
<p>While Windows have gone to lengths protecting your data from a lot of bad elements like worms, viruses, crashes and in fact, even from you, there are still times when Windows can only do so much. There are lots of incidents that files &#8212; important files &#8212; gets deleted still. Despite the warnings and safeguards of the Recycle Bin, it still gets deleted, the forums are pregnant with horror stories of users of losing files because of accidental deletion and entire industries have sprung up just so you could recover data on the hard drive.<br />
<span id="more-475"></span></p>
<p>I&#8217;m assuming that you&#8217;ve already tried all the recycle bin tips and tricks; and didn&#8217;t work, that is why you googled up and probably landed here. In this post, we&#8217;ll talk about how to use System restore capabilities of Windows to resurrect a file.</p>
<p>Hard drive data recovery is becoming a standard feature of Operating systems, Mac OSX has TimeMachine, Some editions of Windows Vista, and the now on beta, Windows 7 have an improved System Restore.</p>
<p>Restoration of accidentally deleted files is probably not one of the primary aim of those who designed it, but it can do the job.</p>
<p>Check to see if System protection is turned on, click the start button, on the &#8220;search&#8221; field, type &#8220;System protection&#8221;, that will lead you to settings window of System protection, make sure the setting is &#8220;on&#8221;. Once it&#8217;s turned on, you can then create restore points in your computer. Restore points are snapshots of your system and files, when you create a restore point for the first time, you are baselining your system, if something is messed up, you can always go back to the baseline. When you add files and install new software, you can create other restore points, you can keep old restore points as well; that way, you can come back to any restore point you have created in the past. Restore points do not make a copy of all of your files and settings, you will run out of disk space easily if that was the case, instead they store only deltas (differences between the last restore point and the snapshot of your system right now), this way, it doesn&#8217;t consume a lot of disk space.</p>
<h4>Example on how to recover files using System restore</h4>
<div style="float:left;margin:10px 30px 15px 0px "><a title="restoring-from-a-specific-folder by triboxs, on Flickr" href="http://www.flickr.com/photos/triboxs/3345882581/"><img src="http://farm4.static.flickr.com/3599/3345882581_f21ee55f02_m.jpg" alt="restoring-from-a-specific-folder" width="184" height="240" /></a></div>
<p>If you have accidentally deleted a file, or folder, try your luck if you can restore it using &#8220;restore&#8221; options.</p>
<ol>
<li>Open my computer, if you the exact folder where you think the file was, go there.</li>
<li>Once you&#8217;ve reached the folder, right-click on it, then select &#8220;properties&#8221; click &#8220;Previous versions&#8221;.</li>
<li>You will see your various restore points you&#8217;ve created (or Windows have created) in the past. You can view the contents of a restore point before you actually restore it.</li>
<li>Just double click any of the restore point, then you can navigate it normally like you would navigate My Computer.</li>
<li>Once you found the file you&#8217;re looking for, Click the restore button.
</li>
</ol>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.kindawannadothat.com/2009/03/undelete-files-in-windows/" rel="bookmark" class="crp_title">Undelete files in Windows</a></li><li><a href="http://www.kindawannadothat.com/2009/03/how-to-recover-files-from-a-near-dead-hard-disk/" rel="bookmark" class="crp_title">How to recover files from a near dead hard disk</a></li><li><a href="http://www.kindawannadothat.com/2009/11/backing-up-and-restoring-svn-repositories/" rel="bookmark" class="crp_title">Backing up and restoring SVN repositories</a></li><li><a href="http://www.kindawannadothat.com/2009/06/working-with-hidden-files-on-the-mac-reloaded-and-then-some/" rel="bookmark" class="crp_title">Working with hidden files on the Mac &#8211; reloaded, and then some</a></li><li><a href="http://www.kindawannadothat.com/2009/10/forgot-the-linux-root-password/" rel="bookmark" class="crp_title">Forgot the Linux root password</a></li><li>Powered by <a href="http://ajaydsouza.com/wordpress/plugins/contextual-related-posts/">Contextual Related Posts</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.kindawannadothat.com/2009/03/how-to-recover-deleted-files-in-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
