Skip to main content

How To Set Up Windows Backup and Restore To Back Up Files


How To Set Up Windows Backup and Restore To Back Up Files



How To Set Up Windows Backup and Restore To Back Up Files.It creates a backup of your personal files and you can also include a system image to back up system settings and program files. Per default, the backups runs on a weekly schedule, but the schedule can be customized or turned off. Should disaster strike, you can use the backup to restore personal files to a new installation of Windows.


Windows 7 features its own backup tool, also known as the Backup & Restore Feature. Windows 7 Backup has many strong points, but its strongest one yet is convenience. No need to download and install a third party software, and if you know your way around Windows, you’ll have no trouble setting it up. If you are unsure and require step by step instructions, this article will guide you through the entire process.


  • Go to > Start and type > Backup into the search field.

  • From the results select > Backup and Restore and hit > Enter.



How To Set Up Windows Backup and Restore To Back Up Files






  • In the Backup and Restore window, click > Set up backup in the top right. As you can see from the screenshot below, I presently do not have a Windows backup set up. For my custom backups I use Cobian Backup.



How To Set Up Windows Backup and Restore To Back Up Files






  • You will have to wait a moment, while Windows launches the backup tool.



How To Set Up Windows Backup and Restore To Back Up Files






  • Once the Set up backup window loads, you will see a list of backup destinations.



How To Set Up Windows Backup and Restore To Back Up Files






  • If you wish to connect to an external hard drive, connect the drive now and then click >Refresh.



How To Set Up Windows Backup and Restore To Back Up Files






  • Once the desired backup destination appears in the list, select it and click on > Next in the bottom right.



How To Set Up Windows Backup and Restore To Back Up Files






  • On the next screen, you can choose what to back up and you can either decide to > Let Windows choose or > Let me choose, i.e. choose yourself.



BackupRestore07   How To Set Up & Use Windows 7 Backup & Restore Feature








If you have private data saved outside your user profile, then you should go with the second option and set up a custom backup, which is what I will guide you through now. Note that you can always change your choices later on, by changing the backup settings.


After clicking > Next in the previous window, you can check the drives, partitions, and folders you want to back up. Note that Backup and Restore does not back up Program Files or system files, even if you include the system drive in your backup. However, you can > Include a system image in your backup, provided there is enough space available on your backup destination.


How To Set Up Windows Backup and Restore To Back Up Files








  • In a final step you can review your settings and manage the schedule of your backup.



How To Set Up Windows Backup and Restore To Back Up Files






Just to mention it, if you selected the first backup option, i.e. > Let Windows choose, you will be taken straight to the above screen where you can review your backup settings and manage the backup schedule. Creating a system image will not be an option.


  • Click on > Change schedule to create a custom time for your backup.



How To Set Up Windows Backup and Restore To Back Up Files






  • Click > OK to confirm the schedule, then click > Save settings and run backup in the > Review your backup settings window. This will take you back to the initial > Backup and Restore Control Panel window. The backup you just confirmed will start immediately, but you can stop it by clicking on > View Details. and then > Stop Backup (twice). and either wait for the next scheduled backup, or launch it manually by clicking the > Back up now button.



How To Set Up Windows Backup and Restore To Back Up Files








The Backup and Restore window will now list your backup and you can change your backup settings here, for example change what you want to back up or adjust the schedule. At the bottom of the window, there is a small section called > Restore. To restore backups, click > Select another backup to restore files from and browse for a previous backup you wish to restore.


How To Set Up Windows Backup and Restore To Back Up Files






If you wish to pause the backup for a period of time, you can click on > Turn off schedule in the top right. A > Turn on schedule link will then appear under > Schedule. And that’s it! That wasn’t hard, was it? The only thing you have to remember now is to attach the backup drive when it’s time for the backup to run and you’re set.

Comments

Popular posts from this blog

Side Team Member Biography Resource

Use this team member biography resource to insert extended descriptions of your team members, with no need of dedicated pages or modal windows. Let the user meet your team and trust your company! Sometimes a picture and a role are not enough to completely describe a team member; you need a more detailed description to make your team “real”! But this requires space… and you can gain it using CSS3 transformations . Just give a look at the smart solution found by Aquatilis : the description enters from the side, just like mobile application behaviour, with no need of page reload. Creating the structure We created a #cd-team section containing our team members preview: <section id="cd-team" class="cd-section"> <div class="cd-container"> <h2>Our team</h2> <ul> <li> <a href="#0" data-type="member-1"> <figure><!-- .... --></figure> <div class=...

Pricing Table-Cross Reference Table for Website

Pricing Table-Cross Reference Table for Website.Tables are indispensable parts of web designs. They let you visually organise tabular content, distributing it on rows and columns. Although they are quite easy to design and code for large screens, things get more complicated on smaller devices. Whether it’s a subscription plan or a checkout process, you must deal with tables in your projects. And you must deal with responsiveness too. I’ve noticed some websites just cut off some columns to make their tables fits on a phone, but this solution doesn’t work in most cases (at least not if you need 5+ columns). I found this good example of a responsive table which inspired this resource: the list of features gets fixed on a side, allowing the user to horizontally scroll through the columns. Nice! Now why didn’t I use the HTML table structure , and instead went with unordered lists? It was difficult for me to make this resource responsive using proper table semantics (maybe an...

Making a Really Cool jQuery Image Gallery

jQuery Image Gallery In this tutorial we will create a beautiful jQuery Image Gallery for website using jQuery Lightbox plugin.You can use this gallery in your website or you can show images.One of the main benefits of using a popular java script library, such as jQuery, is the incredible number of available plug-ins that will kick-start any development project. There is no need to Download the plug-in – I’ve included it in the demo files, so grab them and get on reading. The XHTML We start off with our XHTML front-end. demo.php <div id="container"> <div id="heading"> <!-- the heading --> <h1>A cool jQuery gallery</h1> </div> <div id="gallery"> <!-- this is the containing div for the images --> <?php //our php code goes here ?> <div class="clear"></div> <!-- using clearfix --> </div> <div id="footer"> <!-- some tutorial info --> </div...