<?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>Backup Articles &#187; system</title>
	<atom:link href="http://www.backupmyhost.com/blog/tag/system/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.backupmyhost.com/blog</link>
	<description>All you need to know about data backup &#38; security</description>
	<lastBuildDate>Tue, 07 Sep 2010 09:57:49 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Automated System Image Backup for Windows 7</title>
		<link>http://www.backupmyhost.com/blog/faq/automated-system-image-backup-for-windows-7/</link>
		<comments>http://www.backupmyhost.com/blog/faq/automated-system-image-backup-for-windows-7/#comments</comments>
		<pubDate>Thu, 19 Nov 2009 21:41:59 +0000</pubDate>
		<dc:creator>George</dc:creator>
				<category><![CDATA[FAQ]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[automated]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[snapshot]]></category>
		<category><![CDATA[system]]></category>

		<guid isPermaLink="false">http://www.backupmyhost.com/blog/?p=146</guid>
		<description><![CDATA[







The windows 7 Backup and Restore console do not allow you to schedule Image backups :( On the other hand, ad hoc manual Image backups can be performed!
However, in Windows 7 you can use the Wbadmin command-line utility to perform scheduled clones (snapshots) of your PC!  The normal backup rules need to be observed before using [...]]]></description>
			<content:encoded><![CDATA[
<!-- Quick Adsense Wordpress Plugin: http://techmilieu.com/quick-adsense -->
<div style="float:none;margin:10px 0 10px 0;text-align:center;">
<script type="text/javascript"><!--
google_ad_client = "pub-8456896426992435";
/* 468x15, top post */
google_ad_slot = "5294666294";
google_ad_width = 468;
google_ad_height = 15;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div>
<p>The windows 7 Backup and Restore console do not allow you to schedule Image backups :( On the other hand, ad hoc manual Image backups can be performed!</p>
<div id="attachment_156" class="wp-caption alignnone" style="width: 542px"><img class="size-full wp-image-156 " title="Backup &amp; Restore Image Backup" src="http://www.backupmyhost.com/blog/wp-content/uploads/2009/11/imagebkup1.JPG" alt="System Image Backup" width="532" height="475" />

<p class="wp-caption-text">System Image Backup</p></div>
<p>However, in Windows 7 you can use the Wbadmin command-line utility to perform scheduled clones (snapshots) of your PC!  The normal backup rules need to be observed before using this utility and these are:</p>
<ul>
<li>The destination location should be a second internal hard drive, an external hard drive, a network shared drive or<em> multiple DVDs &#8211; not recommended/feasible</em></li>
<li>The destination drive should be formatted with NTFS file system &#8211; windows 7 default</li>
<li>Adequate space is available on the destination drive &#8211; equal to the source data size (Actually, even less than that!)</li>
<li>The utility needs administrative privilegese</li>
</ul>
<p>Now, let&#8217;s see how easy it is to create an automated task that initiates a System Image backup of the c: drive and saves it to another drive :) Assuming your system volume or drive is the c: and your destination drive is f: (where f: can be a second hard drive or a network share). Save the following text in a file with an extension <em>.bat</em> Ex: SystemSnapshot.bat</p>
<!-- Quick Adsense Wordpress Plugin: http://techmilieu.com/quick-adsense -->
<div style="float:none;margin:10px 0 10px 0;text-align:center;">
<style type="text/css">
@import url(http://www.google.com/cse/api/branding.css);
</style>
<div class="cse-branding-right" style="background-color:#FFFFFF;color:#000000">
  <div class="cse-branding-form">
    <form action="http://www.google.com/cse" id="cse-search-box" target="_blank">
      <div>
        <input type="hidden" name="cx" value="partner-pub-8456896426992435:wi5tiw-g8t3" />
        <input type="hidden" name="ie" value="ISO-8859-1" />
        <input type="text" name="q" size="31" />
        <input type="submit" name="sa" value="Search" />
      </div>
    </form>
  </div>
  <div class="cse-branding-logo">
    <img src="http://www.google.com/images/poweredby_transparent/poweredby_FFFFFF.gif" alt="Google" />
  </div>
  <div class="cse-branding-text">
    Custom Search
  </div>
</div>
</div>

<p><strong>wbadmin start backup -backuptarget:e: -include:c: -allCritical -quiet</strong></p>
<p>This wbadmin utility will start an image backup of your c: drive and system/boot volumes if not specified while it saves it to the f: drive.</p>
<p>As with any script, you can then create a schedule job using SCHTASKS ( Windows Task Scheduler command) as follows:</p>
<p><strong>SCHTASKS /Create /SC weekly /D sun /TN &#8220;Imagebkup&#8221; /TR c:\scripts\SystemSnapshot.bat /ST 22:00 /IT</strong></p>
<p>where the task scheduler will run the Image backup script every Sunday on weekly basis at 22:00 hours. Assuming the user is logged on and have administrative rights! However, I do recommend to use the native Windows 7 Task Scheduler Utility to set a schedule as this utility is much improved in this new OS :) Check for errors if any in the history tab of your scheduled task. An error return code of O means ok!</p>
<p><img class="aligncenter size-full wp-image-158" title="image backup command output" src="http://www.backupmyhost.com/blog/wp-content/uploads/2009/11/imagebkup2.JPG" alt="image backup command output" width="605" height="338" /></p>
<p>A folder structure is created on the destination drive together with a number of files. The most important file is the .vhd one where in Windows 7 Enterprise and Ultimate editions, you can restore all your data and applications. How to mount this image and restore your computer will be explained in a future article :)</p>

<!-- Quick Adsense Wordpress Plugin: http://techmilieu.com/quick-adsense -->
<div style="float:none;margin:0px;">
<script type="text/javascript"><!--
google_ad_client = "pub-8456896426992435";
/* Homepage, 300x250, side bar */
google_ad_slot = "1042304518";
google_ad_width = 300;
google_ad_height = 250;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div>

<div style="font-size:0px;height:0px;line-height:0px;margin:0;padding:0;clear:both"></div>]]></content:encoded>
			<wfw:commentRss>http://www.backupmyhost.com/blog/faq/automated-system-image-backup-for-windows-7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
