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

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...

Bouncy Content Filter for big Website

This space-saving content filter allows the users to switch from one category to the other in a fancy way! Each click fires the rotation of the gallery images, revealing the items belonging to the selected category. Content filters  are particularly useful for big websites, where each pixel counts. Lets say you are showing the “ last products ” of your e-commerce . How about giving the users the option to switch to the “most popular” products without a page refresh? A good solution could be to hide the “most popular” items right behind the “last products”, then use the power of CSS3 3D Transforms to rotate the items when the user switches from one option to the other. The bounce effect is optional, but you get the idea! The rotation won’t work on older browsers like IE9, but the experience won’t be broken – just a display on/off with no transitions. Lets dive into the code! Creating the structure We wrapped the filter into a <nav> element. The filter structur...

Content slider with Zoom Effect for a predefined area in each slide

Zoom Slider Today’s Blueprint is a simple content slider with depth-like zoom functionality. Each slide has a predefined zoom area that will be used to calculate the appropriate scale value for a fullscreen fill. Once the icon for zooming is clicked, the zoom area as well as the page get scaled, creating the illusion that the viewer is approaching the item. Once the whole page is covered, we show some more details. Navigating the slider will animate the inner parts of the slide, allowing for an independent control of the image area and the title. We are using CSS transitions and dymanic.js for moving the slide elements. Dymanic.js by MichaĆ«l Villar is a JavaScript library to create physics-based animations. Please note that we are using a couple of modern CSS properties, so only contemporary browsers are supported. The HTML <!-- Main container --> <div class="container"> <!-- Blueprint header --> <header class="bp-header cf"> ...