﻿<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"><channel><title>Macrium KB</title><generator>InstantKB.NET 2011-2</generator><description>Macrium KB</description><link>http://kb.macrium.com/</link><webMaster>suppport@macrium.com</webMaster><lastBuildDate>Thu, 17 May 2012 06:13:04 GMT</lastBuildDate><ttl>20</ttl><item><title>v5: How to use VBScript to create a monthly backup cycle</title><link>http://kb.macrium.com/Goto50146.aspx</link><description>&lt;p&gt;In this article, we look at using VBScript to handle a monthly backup cycle. I’ll show you how to generate a template VBScript source file and modify a couple of lines to enable selective execution of the XML definition files created in the previous tutorials. &lt;/p&gt;&lt;p&gt;So far we’ve created image definitions and scheduled these to run in a weekly backup cycle. We’ve also used the disk space management option to ensure that our backup disk doesn’t overflow. But, what if you want to schedule your images using a monthly calendar cycle? Say you want to run a full image on the first Monday of every month and an incremental image for all other weekdays. How do you do that? &lt;/p&gt;&lt;p&gt;Macrium Reflect uses the standard Windows Scheduler to schedule all backups and images. This has the advantage of being a very well tried and tested scheduler, plus it reduces valuable program overhead by using an existing, running service. However, while the Windows Scheduler is great for repeating weekly pattern of days, it can’t handle monthly exclusions very well. In our above example we can schedule the full image to run on the first Monday of each month without a problem, but the incremental images would have to be scheduled for every weekday. This means that on the first Monday of each month you’d run both the full and incremental images. This isn’t a very elegant solution; so what do we do? &lt;/p&gt;&lt;p&gt;The answer is VBScript. With VBScript we have total flexibility to do &lt;strong&gt;anything&lt;/strong&gt; we want. We can also reduce the number of tasks to schedule to just one.&lt;/p&gt;&lt;p&gt;If you’re unfamiliar with VBScript source, it can look rather daunting. The syntax seems unnecessarily complex and verbose. However, one thing to remember is that in most cases you can just copy existing code examples and modify them slightly to make them work for you. Macrium Reflect generates a great working template for you to modify, and I’ll show you a couple of simple code lines to add to achieve the scheduling scenario I’ve outlined above.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&lt;/strong&gt;&lt;/p&gt;&lt;hr /&gt;&lt;strong&gt;OK, let’s begin… &lt;/strong&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;1. Start Reflect,&lt;strong&gt; click the ‘Backup Definition Files’ tab&lt;/strong&gt;, select the ‘image of C’ example file and then click the &lt;strong&gt;‘Generate VBScript’ button.&lt;/strong&gt; &lt;/p&gt;&lt;blockquote&gt;&lt;p&gt;&lt;img alt="" src="http://kb.macrium.com/Uploads/Images/v5/v5vb1.jpg" /&gt;&lt;/p&gt;&lt;p&gt; &lt;/p&gt;&lt;/blockquote&gt;2.  The VBScript generation dialog is shown. &lt;strong&gt;Modify the VBScript file name to ‘Monthly Schedule’&lt;/strong&gt;, and &lt;strong&gt;then click OK&lt;/strong&gt;.&lt;blockquote&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://kb.macrium.com/Uploads/Images/v5/v5vb2.jpg" /&gt;&lt;/p&gt;&lt;p&gt;This will generate a VBScript template file using the default options. The defaults will simply run the image and create a log file in the directory where the XML definition is stored. A VBScript source file can be scheduled in exactly the same way as an XML file, but first we’re going to modify it to run both the full and incremental images on the correct days. &lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;p&gt;&lt;strong&gt;3&lt;/strong&gt;.&lt;strong&gt;Click the ‘VBScript files’ tab&lt;/strong&gt;. You should see your new VBScript source file in the list of source files. If you select it with your left mouse you can see the automatically generated code in the lower half of the window. &lt;/p&gt;&lt;blockquote&gt;&lt;img alt="" src="http://kb.macrium.com/Uploads/Images/v5/v5vb3.jpg" /&gt;Monthly &lt;br /&gt;This view has the advantage of syntax highlighting. This means that keywords, conditions and certain variables are displayed different colors, making viewing the source (and potential errors) much easier.&lt;br /&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;/blockquote&gt;4.&lt;strong&gt;  Right click on the VBScript file&lt;/strong&gt; and &lt;strong&gt;select ‘Edit’&lt;/strong&gt;.&lt;br /&gt;&lt;br /&gt;&lt;blockquote&gt;&lt;img alt="" width="408" height="265" src="http://update.macrium.com/reflect/tutorial/Part%204/6.jpg" /&gt;&lt;br /&gt;&lt;br /&gt;This will open the source file in the default editor, &lt;strong&gt;Notepad.exe&lt;/strong&gt;. Make sure that Word Wrap is turned off. This makes editing the source code much easier. &lt;br /&gt;&lt;br /&gt;&lt;img alt="" width="218" height="101" src="http://update.macrium.com/reflect/tutorial/Part%204/4.jpg" /&gt;&lt;br /&gt;&lt;br /&gt;Locate the following line of code: &lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: courier new; font-size: 13px;"&gt;      &lt;/span&gt;&lt;span style="font-family: courier new; font-size: 13px;"&gt;ExitCode = Backup (&lt;span style="color: #a31515;"&gt;"""C:\Program Files\Macrium\Reflect\reflect.exe"" -e -w &amp;lt;BACKUP_TYPE&amp;gt; ""C:\Users\Nick\Reflect\image of c.xml"""&lt;/span&gt;)&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new; font-size: 13px;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: arial; font-size: 13px;"&gt;And replace it with:&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: arial; font-size: 13px;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: arial; font-size: 13px;"&gt;      &lt;span style="font-family: courier new; font-size: 13px;"&gt;&lt;span style="color: #0000ff;"&gt;If&lt;/span&gt; Weekday(&lt;span style="color: #0000ff;"&gt;Date&lt;/span&gt;) = 2&lt;span style="color: #0000ff;"&gt; AND&lt;/span&gt; Month(DateAdd(&lt;span style="color: #a31515;"&gt;"d"&lt;/span&gt;, -7, &lt;span style="color: #0000ff;"&gt;Date&lt;/span&gt;)) &amp;lt;&amp;gt; Month(&lt;span style="color: #0000ff;"&gt;Date&lt;/span&gt;) &lt;/span&gt;&lt;span style="font-family: courier new; font-size: 13px; color: #0000ff;"&gt;Then&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: arial; font-size: 13px;"&gt;&lt;span style="font-family: courier new; font-size: 13px; color: #0000ff;"&gt;&lt;/span&gt;&lt;span style="font-family: courier new; font-size: 13px; color: #008000;"&gt;          ' Run the full image&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new; font-size: 13px;"&gt;&lt;span style="color: #008000;"&gt;&lt;/span&gt;          ExitCode = Backup (&lt;span style="color: #a31515;"&gt;"""C:\Program Files\Macrium\Reflect\reflect.exe"" &lt;span style="font-family: courier new; font-size: 13px; color: #a31515;"&gt;-e -w -full ""C:\Users\Nick\Reflect\image of c.xml&lt;/span&gt;"""&lt;/span&gt;)&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: arial; font-size: 13px;"&gt;&lt;span style="font-family: courier new; font-size: 13px;"&gt;   &lt;/span&gt;&lt;span style="font-family: courier new; font-size: 13px; color: #0000ff;"&gt;Else&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: arial; font-size: 13px;"&gt;&lt;span style="font-family: courier new; font-size: 13px; color: #0000ff;"&gt;&lt;/span&gt;&lt;span style="font-family: courier new; font-size: 13px; color: #008000;"&gt;          ' Run the Incremental image&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new; font-size: 13px;"&gt;&lt;span style="color: #008000;"&gt;&lt;/span&gt;          ExitCode = Backup (&lt;span style="color: #a31515;"&gt;"""C:\Program Files\Macrium\Reflect\reflect.exe"" &lt;span style="font-family: courier new; font-size: 13px; color: #a31515;"&gt;-e -w -inc ""C:\Users\Nick\Reflect\image of c.xml&lt;/span&gt;"""&lt;/span&gt;)&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new; font-size: 13px; color: #0000ff;"&gt;    End If&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new; font-size: 13px;"&gt;&lt;/span&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: arial;"&gt;&lt;strong&gt;        Note:&lt;/strong&gt; Your XML file paths will be different to the paths above. We've replace the parameter '&lt;span style="font-family: courier new; font-size: 13px; color: #a31515;"&gt;&amp;lt;BACKUP_TYPE&amp;gt;&lt;/span&gt;' with the type of backup we want to run. This could be either '&lt;span style="font-family: courier new; font-size: 13px; color: #a31515;"&gt;-full&lt;/span&gt;, '&lt;span style="font-family: courier new; font-size: 13px; color: #a31515;"&gt;-inc&lt;/span&gt;&lt;span style="font-family: courier new; font-size: 13px; color: #a31515;"&gt;&lt;/span&gt;' or '&lt;span style="font-family: courier new; font-size: 13px; color: #a31515;"&gt;-diff&lt;/span&gt;&lt;span style="font-family: courier new; font-size: 13px; color: #a31515;"&gt;&lt;/span&gt;' &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: arial;"&gt;&lt;strong&gt;&lt;br /&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span&gt;&lt;strong&gt;A quick summary of the functions used above: &lt;/strong&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;blockquote&gt;&lt;ul&gt;    &lt;li&gt;&lt;span&gt;    The &lt;strong&gt;Date &lt;/strong&gt;keyword is the current system date. &lt;/span&gt;&lt;/li&gt;    &lt;li&gt;&lt;span&gt;    The &lt;strong&gt;Weekday &lt;/strong&gt;function returns the day of the week as a number. 1 = Sunday, 2 = Monday etc. &lt;/span&gt;&lt;/li&gt;    &lt;li&gt;&lt;span&gt;    &lt;strong&gt;DateAdd &lt;/strong&gt;simply subtracts 7 days from the current date. The “d” means that we are subtracting (or adding) days. The other possibilities are, “yyyy” - Year, “q” – Quarter, “m” – Month, “y” - Day of year, “w” – Weekday, “ww” - Week of year, “h” – Hour, “n” – Minute, “s” – Second.&lt;/span&gt;&lt;/li&gt;    &lt;li&gt;&lt;span style="font-family: arial;"&gt;The &lt;strong&gt;Month &lt;/strong&gt;function returns the month (1-12) of the DateAdd result and compares this with the current month using the ‘&amp;lt;&amp;gt;’ not equal to operator.     &lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/blockquote&gt;&lt;p&gt;&lt;span xmlns="http://www.w3.org/1999/xhtml"&gt;So, if the current day is Monday and the Monday of last week is a different month, then this must be the first Monday of the current month. As you can see, the code then simply executes the XML definition file for the full image otherwise an incremental XML is executed. &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span xmlns="http://www.w3.org/1999/xhtml"&gt;When you’ve made the changes, save the file and close Notepad. &lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span xmlns="http://www.w3.org/1999/xhtml"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;p&gt;&lt;strong&gt;&lt;span xmlns="http://www.w3.org/1999/xhtml"&gt;5.   All that remains is to schedule the VBScript file to run every weekday.&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;blockquote&gt;&lt;p&gt;&lt;span xmlns="http://www.w3.org/1999/xhtml"&gt;&lt;strong&gt;Right click on the VBScript file&lt;/strong&gt; in the list and &lt;strong&gt;select ‘Schedule’&lt;/strong&gt;. You’ve been through this wizard before, so I won’t go over it again. You could of course, select only weekdays or every day, but the important thing to understand is that whatever you choose, it’s the VBScript code that decides whether to run the full or incremental image not the scheduler.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span xmlns="http://www.w3.org/1999/xhtml"&gt;&lt;strong&gt;Note: &lt;/strong&gt;When you schedule this script it doesn't matter whether you select 'Full', 'Incremental' or 'Differential' in the schedule dialog, it's the script that determines which type to run.&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;p&gt;&lt;span xmlns="http://www.w3.org/1999/xhtml"&gt;&lt;/span&gt;&lt;/p&gt;&lt;hr /&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;span xmlns="http://www.w3.org/1999/xhtml"&gt;You’ve done it! VBScript code that modifies the running order of your images. VBScript gives you complete flexibility for any situation you can think of.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span xmlns="http://www.w3.org/1999/xhtml"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span xmlns="http://www.w3.org/1999/xhtml"&gt;&lt;hr /&gt;&lt;strong&gt;Variations...&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;1. How to run the Full backup on the 1st day of every month and increments on every other.&lt;/strong&gt;&lt;/p&gt;&lt;blockquote&gt;&lt;p&gt;Change the execution condition in step 4 above to the following:&lt;/p&gt;&lt;/blockquote&gt;&lt;blockquote&gt;&lt;p&gt;&lt;span style="font-family: arial; font-size: 13px;"&gt;&lt;span style="font-family: courier new; font-size: 13px;"&gt;&lt;span style="color: #0000ff;"&gt;If&lt;/span&gt; Day(&lt;span style="color: #0000ff;"&gt;Date&lt;/span&gt;) = 1&lt;span style="color: #0000ff;"&gt; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-family: courier new; font-size: 13px; color: #008000;"&gt;Then&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: courier new; font-size: 13px; color: #008000;"&gt;      ' Run the full image&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new; font-size: 13px;"&gt;&lt;span style="color: #008000;"&gt;&lt;/span&gt;       ExitCode = Backup (&lt;span style="color: #a31515;"&gt;"""C:\Program Files\Macrium\Reflect\reflect.exe"" &lt;span style="font-family: courier new; font-size: 13px; color: #a31515;"&gt;-e -w -full ""C:\Users\Nick\Reflect\image of c.xml&lt;/span&gt;"""&lt;/span&gt;)&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new; font-size: 13px; color: #0000ff;"&gt;Else&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: arial; font-size: 13px;"&gt;&lt;span style="font-family: courier new; font-size: 13px; color: #0000ff;"&gt;&lt;/span&gt;&lt;span style="font-family: courier new; font-size: 13px; color: #008000;"&gt;       ' Run the Incremental image&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new; font-size: 13px;"&gt;&lt;span style="color: #008000;"&gt;&lt;/span&gt;       ExitCode = Backup (&lt;span style="color: #a31515;"&gt;"""C:\Program Files\Macrium\Reflect\reflect.exe"" &lt;span style="font-family: courier new; font-size: 13px; color: #a31515;"&gt;-e -w -inc ""C:\Users\Nick\Reflect\image of c.xml&lt;/span&gt;"""&lt;/span&gt;)&lt;/span&gt;&lt;br /&gt; &lt;span style="font-family: courier new; font-size: 13px; color: #0000ff;"&gt;End If&lt;/span&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;p&gt; &lt;/p&gt;&lt;p&gt;&lt;strong&gt;&lt;span xmlns="http://www.w3.org/1999/xhtml"&gt;2. How about running the full backup at a different time to the incremental backups.&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;blockquote&gt;&lt;p&gt;&lt;span xmlns="http://www.w3.org/1999/xhtml"&gt;&lt;strong&gt;For example:&lt;/strong&gt; The full backup at 01:00 and the remaining increments at 09:00. For this you'll need to create two scheduled tasks.&lt;/span&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;blockquote&gt;&lt;p&gt;&lt;span xmlns="http://www.w3.org/1999/xhtml"&gt;1. First create create the full backup scheduled task by right clicking on the XML backup definition file and scheduling to run a 'Full' on the 1st of each month at 01:00&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span xmlns="http://www.w3.org/1999/xhtml"&gt;2. Then modify the VBScript as below and schedule it at 09:00 every day.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span xmlns="http://www.w3.org/1999/xhtml"&gt;&lt;blockquote&gt;&lt;/blockquote&gt;&lt;p&gt;&lt;span style="font-family: arial; font-size: 13px;"&gt;&lt;span style="font-family: courier new; font-size: 13px;"&gt;&lt;span style="color: #0000ff;"&gt;If&lt;/span&gt; Day(&lt;span style="color: #0000ff;"&gt;Date&lt;/span&gt;) &amp;lt;&amp;gt; 1&lt;span style="color: #0000ff;"&gt; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-family: courier new; font-size: 13px; color: #008000;"&gt;Then&lt;/span&gt;&lt;span style="font-family: courier new; font-size: 13px; color: #008000;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: arial; font-size: 13px;"&gt;&lt;span style="font-family: courier new; font-size: 13px; color: #0000ff;"&gt;&lt;/span&gt;&lt;span style="font-family: courier new; font-size: 13px; color: #008000;"&gt;       ' Run the Incremental image&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new; font-size: 13px;"&gt;&lt;span style="color: #008000;"&gt;&lt;/span&gt;       ExitCode = Backup (&lt;span style="color: #a31515;"&gt;"""C:\Program Files\Macrium\Reflect\reflect.exe"" &lt;span style="font-family: courier new; font-size: 13px; color: #a31515;"&gt;-e -w -inc ""C:\Users\Nick\Reflect\image of c.xml&lt;/span&gt;"""&lt;/span&gt;)&lt;/span&gt;&lt;br /&gt; &lt;span style="font-family: courier new; font-size: 13px; color: #0000ff;"&gt;End If&lt;/span&gt;&lt;/p&gt;&lt;blockquote&gt;&lt;/blockquote&gt;In the above example on the first day of each month nothing will happen when this VBScript is executed but the scheduled full backup will occur at 01:00. On other days of the month incremental backups will occur at the scheduled time, 09:00,&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;p&gt;&lt;span xmlns="http://www.w3.org/1999/xhtml"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span xmlns="http://www.w3.org/1999/xhtml"&gt;&lt;hr /&gt;This is just a very small example of the power of VBScript. If you want to delve further into VBScript, have a look at the options in the generator. It generates separate functions for each option and provides some handy comments to help you understand the code. &lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span xmlns="http://www.w3.org/1999/xhtml"&gt;An excellent reference of VBScript functions can be found at &lt;a href="http://www.w3schools.com/VBscript/vbscript_ref_functions.asp"&gt;http://www.w3schools.com/VBscript/vbscript_ref_functions.asp&lt;/a&gt; . Here you’ll find, not just the date functions introduced in this article, but every function available to you.  &lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span xmlns="http://www.w3.org/1999/xhtml"&gt;&lt;hr /&gt;&lt;strong&gt;&lt;/strong&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;</description><pubDate>Wed, 02 May 2012 10:41:02 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>Restoring to dissimilar hardware - What is Macrium Redeploy?</title><link>http://kb.macrium.com/Goto50144.aspx</link><description>&lt;div&gt;&lt;span style="line-height: 18px; font-family: verdana,arial,tahoma; color: #636363;"&gt;There are many good reasons to image a computer hard drive. It will provide protection against&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;ul&gt;    &lt;li&gt;&lt;span style="line-height: 18px; font-family: verdana,arial,tahoma; color: #636363;"&gt;Accidental deletion of files&lt;/span&gt;&lt;/li&gt;    &lt;li&gt;&lt;span style="line-height: 18px; font-family: verdana,arial,tahoma; color: #636363;"&gt;Corruption of files, file system or windows system due to software bug&lt;/span&gt;&lt;/li&gt;    &lt;li&gt;&lt;span style="line-height: 18px; font-family: verdana,arial,tahoma; color: #636363;"&gt;Hard disk corruption or failure&lt;/span&gt;&lt;/li&gt;    &lt;li&gt;&lt;span style="line-height: 18px; font-family: verdana,arial,tahoma; color: #636363;"&gt;Theft of computer&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div&gt;&lt;span style="line-height: 18px; font-family: verdana,arial,tahoma; color: #636363;"&gt;In the case of lost files or a failed, corrupted hard drive, an image restore will get you up and running again.&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style="line-height: 18px; font-family: verdana,arial,tahoma; color: #636363;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style="line-height: 18px; font-family: verdana,arial,tahoma; color: #636363;"&gt;Unfortunately, if you need to buy a new computer, the situation is rather more complex. Windows is optimised to boot as quickly as possible and this is achieved by only loading drivers for your system. This means, however, that if you try to boot an installation of windows on new hardware, you are likely to encounter the dreaded blue screen of death (or BSOD).&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style="line-height: 18px; font-family: verdana,arial,tahoma; color: #636363;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style="line-height: 18px; font-family: verdana,arial,tahoma; color: #636363;"&gt;You can also encounter this issue, if you are moving your system to a virtual machine, from a virtual machine or changing your storage configuration, such as switching to a RAID setup.&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style="line-height: 18px; font-family: verdana,arial,tahoma; color: #636363;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style="line-height: 18px; font-family: verdana,arial,tahoma; color: #636363;"&gt;As this is a situation commonly encountered by our customers, we have developed a tool call &lt;strong&gt;ReDeploy&lt;/strong&gt;. It &lt;/span&gt;&lt;span style="line-height: 18px; font-family: verdana,arial,tahoma; color: #636363;"&gt;is designed make the complex process of getting windows running on new hardware as easy and intuitive as possible.&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style="line-height: 18px; font-family: verdana,arial,tahoma; color: #636363;"&gt;&lt;hr /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style="line-height: 18px; font-family: verdana,arial,tahoma; color: #636363;"&gt;You can read about it in more detail here&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style="line-height: 18px; font-family: verdana,arial,tahoma; color: #636363;"&gt;&lt;a href="http://kb.macrium.com/KnowledgebaseArticle50126.aspx" class="ApplyClass"&gt;http://kb.macrium.com/KnowledgebaseArticle50126.aspx&lt;/a&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;</description><pubDate>Fri, 13 Apr 2012 17:12:10 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>The benefits of differential and incremental backup</title><link>http://kb.macrium.com/Goto50143.aspx</link><description>In the Free Edition of Macrium Reflect, you are only able to make full images of your disks and partitions. In creating a full image, the entire contents of the imaged file system are stored in the image file. Although this is a reliable way of backing up your PC, repeating the process is slow and subsequent images can fill your target media very quickly. However, in the paid versions of Macrium Reflect, it is possible to create differential and incremental images which are both quicker to execute than full images and create much smaller image files.&lt;div&gt;&lt;strong&gt;&lt;hr /&gt;Differential Images&lt;br /&gt;&lt;/strong&gt;&lt;/div&gt;&lt;blockquote&gt;&lt;div&gt;In order to create a differential image, a full image must first be created. The differential then stores only the changes that have been made to the imaged file system since the last full image. It is possible to take subsequent differentials, but only one differential and the full are required in order to fully restore the system. However, the longer the time between the full and the differential, the larger the differential image file will be and the longer it will take to create.&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;strong&gt;Advantages&lt;/strong&gt;&lt;/div&gt;&lt;div&gt;&lt;ul&gt;    &lt;li&gt;Differential images created after the initial full Image are very quick because only file system changes since the full backup are saved.&lt;/li&gt;    &lt;li&gt;The amount of disk space used by differential images is significantly less than that of full images&lt;/li&gt;    &lt;li&gt;Only two image files are required to restore the system&lt;/li&gt;    &lt;br /&gt;&lt;/ul&gt;&lt;div&gt;&lt;strong&gt;Disadvantages&lt;/strong&gt;&lt;br /&gt;&lt;ul&gt;    &lt;li&gt;As the time since the last full image was taken increases, the size of the differential will grow as will the time it takes to create the differential image. In order to reduce this time, it is necessary to perform a full image occasionally to reduce the size of the subsequent differential images.&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;div&gt;&lt;ul&gt;    &lt;ul&gt;    &lt;/ul&gt;&lt;/ul&gt;&lt;/div&gt;&lt;div&gt;&lt;strong&gt;Incremental Images&lt;/strong&gt;&lt;/div&gt;&lt;blockquote&gt;&lt;div&gt;Incremental images are similar to differential images in that they require a full backup to be made first. However, the main difference is that they only store file system changes since the last image, either full or incremental. The resultant backup set will therefore consist of a full image and a number of incremental images which must all be present in order to restore the system correctly.&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;strong&gt;Advantages&lt;/strong&gt;&lt;/div&gt;&lt;div&gt;&lt;ul&gt;    &lt;li&gt;Incremental images have the same advantages as differential images, but since they only store the changes that were made since the last full &lt;strong&gt;or &lt;/strong&gt;incremental. They are always small and very quick to make, especially if done frequently.&lt;/li&gt;&lt;/ul&gt;&lt;div&gt;&lt;strong&gt;Disadvantages&lt;/strong&gt;&lt;br /&gt;&lt;ul&gt;    &lt;li&gt;The only disadvantage to using incremental images is that all files must be present in the image set. If any intermediate incremental images are missing, it will not be possible to restore the system to the latest backup.&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;div&gt;&lt;ul&gt;    &lt;ul&gt;    &lt;/ul&gt;&lt;/ul&gt;&lt;p&gt;&lt;/p&gt;&lt;hr /&gt;&lt;strong&gt;Managing Differential and Incremental images in Macrium Reflect&lt;/strong&gt;&lt;p&gt;&lt;/p&gt;&lt;/div&gt;&lt;div&gt;It may appear to be quite an onerous task to maintain the backup sets. With this in mind, Macrium Reflect takes care of all the hard work for you. It is possible to schedule incremental or differential backups automatically. When restoring an image, you select which image you wish to restore and Macrium Reflect automatically select the required files in the image set as part of the restore process. The same is true for exploring an image. If you choose to explore an incremental image in an explorer window, Macrium Reflect will reconstruct all the files that have been backed up to that time.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Macrium Reflect also includes functionality that allows you to automatically delete image sets that have expired. For example, if you take a full image  every month and then incremental images every day, you can configure Reflect to keep two full image sets (the equivalent of two months of backups) and delete any older files. As a result of this, your backup media will not end up becoming full of obsolete image files.&lt;/div&gt;</description><pubDate>Thu, 12 Apr 2012 12:09:13 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>Driver load issues in WinPE</title><link>http://kb.macrium.com/Goto50142.aspx</link><description>&lt;strong&gt;This article covers some of the issues with drivers failing to load when booting WinPE.&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;&lt;h3&gt; Use drivers of the same architecture&lt;/h3&gt;Drivers, like any other form of software, have an architecture, either 32 bit (x86) or 64 bit (x64). When trying to load drivers in WinPE, it is essential to have drivers which match the architecture of your WinPE environment. For example, using 32 bit drivers on a 64 bit WinPE could cause load failures.&lt;br /&gt;&lt;br /&gt;&lt;hr /&gt;&lt;h3&gt;Drivers not located on accessible disk&lt;/h3&gt;Normally, when booting from a RAID controller, be it array or single drive configuration, drivers will need to be loaded in order to access that device. However, as the device will not be visible to WinPE you cannot put drivers on any disk (fixed or optical) which is connected to that controller.&lt;h4&gt;Solution 1 : Make drivers available on accessible media such as a usb device&lt;/h4&gt;In order to get round this chicken and egg problem, you will need to place drivers for the device onto a disk which is visible in WinPE, a good choice would be a USB2 pen drive for this.&lt;br /&gt;&lt;br /&gt;The exceptions to this are nVidia RAID and Intel Matrix RAID, as WinPE has built in driver support for these devices.&lt;br /&gt;&lt;br /&gt;The drivers folder can be copied to another disk using the following method whilst in Windows:&lt;br /&gt;&lt;br /&gt;If you have a local non-RAID disk 'e:' then from a command prompt type:&lt;br /&gt;&lt;br /&gt;&lt;blockquote&gt;&lt;span style="font-family: courier new;"&gt;xcopy /e c:\boot\macrium\drivers\* e:\boot\macrium\drivers&lt;/span&gt;&lt;br /&gt;&lt;/blockquote&gt;&lt;br /&gt;if 'e:' is a removable (flash) drive, then use the following command:&lt;br /&gt;&lt;br /&gt;&lt;blockquote&gt;&lt;span style="font-family: courier new;"&gt;xcopy /e c:\boot\macrium\drivers\* e:\drivers&lt;/span&gt;&lt;br /&gt;&lt;/blockquote&gt;&lt;br /&gt;Note: The '/e' switch means recursive copy and is not to be confused with the drive letter 'e:'.&lt;br /&gt;&lt;br /&gt;If 'e:' is present during the boot menu load then the drivers will be loaded.&lt;br /&gt;&lt;h4&gt;Solution 2 : Add drivers to PE Image&lt;/h4&gt;&lt;p&gt;This solution only works if you are have the Microsoft WAIK installed. It will be installed automatically if you create a v5 custom PE rescue CD. This solution is somewhat involved, but it will enable &lt;/p&gt;&lt;p&gt;First mount your wim, this will take a couple of minutes.&lt;/p&gt;&lt;p&gt;dism /mount-wim /wimfile:C:\boot\macrium\WAIKFiles\ISO\sources\boot.wim /index:1 /MountDir:C:\boot\macrium\WAIKFiles\mount&lt;/p&gt;&lt;p&gt;Then inject your driver. Modify the driver path to your inf file.&lt;br /&gt;dism /image:C:\boot\macrium\WAIKFiles\mount /Add-Driver /driver:C:\boot\macrium\Drivers\Disk\VEN_1095_DEV_0242\adp3132.inf&lt;/p&gt;&lt;p&gt;Then unmount your your wim, this will take a couple of minutes.&lt;br /&gt;dism /Unmount-Wim /MountDir:C:\boot\macrium\WAIKFiles\mount /Commit&lt;/p&gt;&lt;br /&gt;&lt;hr /&gt;&lt;h3&gt;Driver location load order&lt;/h3&gt;Macrium Reflect will load drivers based on the existence of the file macrium.oem, the following locations will be checked in sequence and if the file macrium.oem is found then driver loading will commence from that point. Subsequent locations will not be checked for drivers.&lt;br /&gt;&lt;br /&gt;&lt;ol&gt;    &lt;li&gt;    Removeable media (such as USB pen drives). The file (macrium.oem) must reside in the Drivers folder on the root of the media.&lt;/li&gt;    &lt;li&gt;CD=ROM/DVD-ROM drives. The file (macrium.oem) must reside on the Drivers folder on the root of the media.&lt;/li&gt;    &lt;li&gt;Local fixed hard disks. The file must reside on the Boot\Macrium\Drivers folder on the root of the local hard disk.&lt;/li&gt;&lt;/ol&gt;Please note that in Windows, the drivers folder that's loaded when WinPE boots can be located in c:\Boot\Nacrium\Drivers. Once USB/CD-ROM/DVD-ROM rescue is created this folder will be \Drivers on the root of the respective rescue media.&lt;br /&gt;&lt;br /&gt;&lt;hr /&gt;&lt;h3&gt;Missing support files&lt;/h3&gt;On 64 bit WinPE systems, most drivers will require a supporting security catalog and in some instances, DLL files. If running a 64 bit Windows Vista system or later, Macrium Reflect will take care of this for you when building the rescue media. However, if on an XP or 2003 Server operating system you will need to make sure you provide a driver package that contains a security catalog and any supporting DLL files when using the Update Driver feature in the Create Rescue Media wizard.&lt;br /&gt;&lt;hr /&gt;&lt;p&gt;&lt;/p&gt;&lt;div style="text-align: right;"&gt;&lt;strong&gt;Search Terms&lt;/strong&gt;&lt;br /&gt;Cannot see RAID array in WinPE&lt;br /&gt;Drivers failed to load in WinPE&lt;br /&gt;WinPE drivers&lt;br /&gt;Driver load failed&lt;br /&gt;&lt;hr /&gt;&lt;/div&gt;</description><pubDate>Wed, 08 Feb 2012 13:42:15 GMT</pubDate><dc:creator>john.pendleton@macrium.com</dc:creator></item><item><title>v5: Command line arguments</title><link>http://kb.macrium.com/Goto50141.aspx</link><description>It is possible run reflect.exe from the command line or VB script. A number of command line arguments allow the user flexibility to perform a number of actions. There are three main usage areas as follows:&lt;br /&gt;&lt;ul&gt;    &lt;li&gt;Running a backup&lt;/li&gt;    &lt;li&gt;Mounting an image&lt;/li&gt;    &lt;li&gt;Unmounting an image&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Each topic is discussed in detail below.&lt;/p&gt;&lt;h2&gt;Running a backup&lt;/h2&gt;&lt;p&gt;Use the syntax as follows:&lt;/p&gt;&lt;pre&gt;reflect.exe [-v | -e [-w] [-full | -inc | -diff] [xml filename] ]&lt;/pre&gt;&lt;h4&gt;Switches&lt;/h4&gt;&lt;blockquote&gt;&lt;table&gt;    &lt;tbody&gt;        &lt;tr&gt;            &lt;td&gt;-e     &lt;br /&gt;            &lt;/td&gt;            &lt;td&gt; Execute the XML file. If no full / diff / inc qualifier is used, a full backup is performed by default.&lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td&gt;-w&lt;/td&gt;            &lt;td&gt; If Reflect is busy then wait until available otherwise exit immediately&lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td&gt;-v &lt;br /&gt;            &lt;/td&gt;            &lt;td&gt; Validate the XML file and exit&lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td&gt;-full&lt;br /&gt;            &lt;/td&gt;            &lt;td&gt; Run a full backup&lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td&gt;-diff         &lt;br /&gt;            &lt;/td&gt;            &lt;td&gt; Run a differential backup&lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td&gt;-inc&lt;/td&gt;            &lt;td&gt; Run an incremental backup&lt;/td&gt;        &lt;/tr&gt;    &lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;/blockquote&gt;&lt;h4&gt;Examples&lt;/h4&gt;To validate an XML file:&lt;br /&gt;&lt;blockquote&gt;&lt;/blockquote&gt;&lt;pre&gt;    reflect.exe -v "c:\backup.xml"&lt;/pre&gt;To run a full backup using an XML file:&lt;br /&gt;&lt;blockquote&gt;&lt;/blockquote&gt;&lt;pre&gt;    reflect.exe -e "c:\backup.xml"&lt;/pre&gt;&lt;p&gt;or&lt;/p&gt;&lt;blockquote&gt;&lt;pre&gt;reflect.exe -e -full "c:\backup.xml"&lt;/pre&gt;&lt;/blockquote&gt;To execute an XML file with wait if busy&lt;br /&gt;&lt;blockquote&gt;&lt;/blockquote&gt;&lt;pre&gt;    reflect.exe -e -w "c:\backup.xml"&lt;/pre&gt;To execute an XML file and create an incremental image&lt;br /&gt;&lt;blockquote&gt;&lt;/blockquote&gt;&lt;pre&gt;    reflect.exe -e -inc "c:\backup.xml"&lt;/pre&gt;&lt;h2&gt;Mounting an image&lt;/h2&gt;Use the syntax as follows:&lt;br /&gt;&lt;blockquote&gt;&lt;/blockquote&gt;&lt;pre&gt;    reflect.exe [Path To Image File] -b [-auto -drives [Drives[s]]  -pass [PASSWORD]]&lt;/pre&gt;&lt;h4&gt;Switches&lt;/h4&gt;&lt;blockquote&gt;&lt;p&gt;&lt;table&gt;    &lt;tbody&gt;        &lt;tr&gt;            &lt;td&gt; -b&lt;/td&gt;            &lt;td&gt;Browse image &lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td&gt; -auto&lt;/td&gt;            &lt;td&gt;Automatically assign drive letters.&lt;br\/&gt;\tIf not specified then you will be prompted&lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td&gt; -drives       &lt;br /&gt;            &lt;/td&gt;            &lt;td&gt;A comma separated list of drive letters to use. If not specified&lt;br\/&gt;\tthen the next available letters are used&lt;br /&gt;            &lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td&gt; -pass&lt;/td&gt;            &lt;td&gt; The password for protected image files&lt;/td&gt;        &lt;/tr&gt;    &lt;/tbody&gt;&lt;/table&gt;&lt;/p&gt;&lt;/blockquote&gt;The image file name is the fully qualified path. If "LAST_FILE_CREATED" is specified then the last image created in the current Windows session is mounted.&lt;br /&gt;&lt;h4&gt;Examples&lt;/h4&gt;To mount an image and prompt for a drive letter to use:&lt;blockquote&gt;&lt;pre&gt;reflect.exe "D:\901DBF91346B9A81-00-00.mrimg" -b&lt;/pre&gt;&lt;/blockquote&gt;To mount all partitions in an image using the next available drive letter(s):&lt;br /&gt;&lt;blockquote&gt;&lt;/blockquote&gt;&lt;pre&gt;    reflect.exe "D:\901DBF91346B9A81-00-00.mrimg" -b -auto&lt;/pre&gt;To mount all partitions for the last image created:&lt;blockquote&gt;&lt;pre&gt;reflect.exe "LAST_FILE_CREATED" -b -auto&lt;/pre&gt;&lt;/blockquote&gt;To mount all partitions in an image using drive letters j,k,l:&lt;blockquote&gt;&lt;pre&gt;reflect.exe "D:\901DBF91346B9A81-00-00.mrimg" -b -auto -drives j,k,l&lt;/pre&gt;&lt;/blockquote&gt;To mount all partitions in a password protected image using drive letters j,k,l:&lt;br /&gt;&lt;blockquote&gt;&lt;/blockquote&gt;&lt;pre&gt;    reflect.exe "D:\901DBF91346B9A81-00-00.mrimg" -b -auto -drives j,k,l -pass "PWD"&lt;/pre&gt;&lt;h2&gt;Unmounting an image&lt;/h2&gt;Use the syntax as follows:&lt;blockquote&gt;&lt;pre&gt;reflect.exe [Drive Letter] -u&lt;/pre&gt;&lt;/blockquote&gt;&lt;h4&gt;Switches&lt;/h4&gt;&lt;blockquote&gt;-u          Unmount image&lt;br /&gt;&lt;/blockquote&gt;If a drive letter isn't specified then all mounted images are unmmounted&lt;br /&gt;&lt;h4&gt;Examples&lt;/h4&gt;To unmount an image from drive letter 'j':&lt;blockquote&gt;&lt;pre&gt;reflect.exe J -u&lt;/pre&gt;&lt;/blockquote&gt;To umnount all mounted drives:&lt;blockquote&gt;&lt;pre&gt;reflect.exe -u&lt;/pre&gt;&lt;/blockquote&gt;</description><pubDate>Tue, 24 Jan 2012 12:35:15 GMT</pubDate><dc:creator>jon.dittman@macrium.com</dc:creator></item><item><title>Understanding Disk encryption and Macrium Reflect</title><link>http://kb.macrium.com/Goto50140.aspx</link><description>Disk encryption software is provided by Microsoft under the name Bitlocker. Various third party tools, such as TrueCrypt, McAfee SafeBoot and PGP Whole Disk Encryption offer similar functionality.&lt;br /&gt;&lt;br /&gt;You can choose to encrypt your data in the following ways.&lt;br /&gt;1) System disk/partition encryption&lt;br /&gt;2) Data partition/disk encryption&lt;br /&gt;3) File based virtual disk&lt;br /&gt;The method you choose impacts on how you can image, backup and restore your system or files.&lt;br /&gt;&lt;br /&gt;&lt;table cellspacing="10" border="1"&gt;    &lt;tbody&gt;        &lt;tr&gt;            &lt;td&gt; &lt;/td&gt;            &lt;td&gt;&lt;strong&gt;System Disk/Data Partition Encryption&lt;/strong&gt;&lt;br /&gt;            &lt;/td&gt;            &lt;td&gt;&lt;strong&gt;File based virtual disk&lt;/strong&gt; &lt;br /&gt;            &lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td valign="top"&gt;&lt;strong&gt;Windows/Reflect&lt;/strong&gt;&lt;br /&gt;            &lt;/td&gt;            &lt;td valign="top"&gt;Encrypted partitions are unencrypted on the fly, so applications, including Reflect will be presented will an unencrypted partition.&lt;br /&gt;            &lt;/td&gt;            &lt;td&gt;The mounted virtual disk will not be recognised as a disk by Reflect.            However, the virtual disk file will be imaged correctly when the            containing partition is imaged, or it is included in a file and folder            backup.&lt;br /&gt;            Note: You should unmount the virtual disk before the backup.&lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td valign="top"&gt;&lt;strong&gt;Image file contents&lt;/strong&gt;&lt;br /&gt;            &lt;/td&gt;            &lt;td valign="top"&gt;By default, unencrypted - use Reflect encryption.&lt;br /&gt;            If this image is restored, the restored partitions will be unencrypted.&lt;br /&gt;            &lt;/td&gt;            &lt;td valign="top"&gt;The virtual disk file is stored in its encrypted state. There is no need to use Reflect encryption.&lt;br /&gt;            &lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td valign="top"&gt;&lt;strong&gt;Rescue CD&lt;/strong&gt;&lt;br /&gt;            &lt;/td&gt;            &lt;td valign="top"&gt;Encrypted partitions will be displayed unformatted.&lt;br /&gt;            It is not possible to navigate the contents. They can be imaged, only in 'exact copy' mode.&lt;br /&gt;            The fix boot problems and redeploy functions will not work.&lt;br /&gt;            &lt;/td&gt;            &lt;td valign="top"&gt;It is not possible to mount virtual disk files with the rescue CD. However, they can be restored from a backup, if they become corrupted.&lt;br /&gt;            &lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td valign="top"&gt;&lt;strong&gt;Booting off a restored system partition&lt;/strong&gt; &lt;/td&gt;            &lt;td valign="top"&gt;If you restore a system partition using the rescue CD, it will be restored un-encrypted.&lt;br /&gt;            &lt;br /&gt;            This is likely to lead to a non-bootable system as the bootloader is configured for an encrypted partition. You can however use the Macrium CD to restore the Windows bootloader, meaning you will have a bootable &lt;strong&gt;unencrypted&lt;/strong&gt; partition.&lt;br /&gt;            &lt;br /&gt;            If you wish to image an encrypted partition that will be bootable on restore, you must take the image using the rescue CD. This can only be do in 'exact copy' mode, so will be slower than a normal image and will result in a larger file.&lt;br /&gt;            &lt;/td&gt;            &lt;td align="center"&gt;n/a &lt;/td&gt;        &lt;/tr&gt;    &lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;Products we have tested with Reflect:&lt;br /&gt;&lt;br /&gt;&lt;table&gt;    &lt;tbody&gt;        &lt;tr&gt;            &lt;td align="center"&gt;&lt;strong&gt; Product:&lt;/strong&gt;&lt;/td&gt;            &lt;td align="center"&gt;&lt;strong&gt;Reflect V5&lt;/strong&gt;&lt;br /&gt;            &lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td align="center"&gt; &lt;strong&gt;PGP Whole Disk Encryption&lt;/strong&gt;&lt;br /&gt;            &lt;/td&gt;            &lt;td align="center"&gt; Compatible&lt;br /&gt;            &lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td align="center"&gt; &lt;strong&gt;TrueCrypt system disk encryption&lt;/strong&gt;&lt;br /&gt;            &lt;/td&gt;            &lt;td align="center"&gt; Compatible&lt;br /&gt;            &lt;/td&gt;        &lt;/tr&gt;    &lt;/tbody&gt;&lt;/table&gt;&lt;h2&gt;How to add TrueCrypt features to the rescue environment&lt;/h2&gt;&lt;div&gt;This enables you to mount truecrypt encrypted disks and volumes in the macrium rescue environment.&lt;/div&gt;&lt;div&gt;It does not allow you to restore to an encrypted system disk or encrypt a system disk after a Macrium restore.&lt;/div&gt;&lt;br class="Apple-interchange-newline" /&gt;&lt;div&gt;Note: This requires 32bit Custom WAIK Rescue environment.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;1) Configure Reflect to use a custom base wim (see &lt;a href="http://kb.macrium.com/KnowledgebaseArticle50140.aspx#customwim"&gt;here&lt;/a&gt;).&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;2) Run the truecrypt installer, picking the extract option. You can choose the extract location - in the following example, they are extracted to c:\TrueCrypt.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;3) Mount the rescue environment wim. From a cmd window, type the following, ensuring you use the path to your custom wim. ...&lt;/div&gt;&lt;div&gt;&lt;pre&gt;dism /mount-wim /wimfile:C:\Program Files\Windows AIK\Tools\PETools\x86\custom.wim /index:1 /MountDir:C:\boot\macrium\WAIKFiles\mount&lt;/pre&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;4) Copy the the files. Type ...&lt;/div&gt;&lt;pre&gt;xcopy /i c:\TrueCrypt "C:\boot\macrium\WAIKFiles\mount\Program Files\TrueCrypt"&lt;/pre&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;5) Unmount the wim file. Type ...&lt;/div&gt;&lt;pre&gt;dism /Unmount-Wim /MountDir:C:\boot\macrium\WAIKFiles\mount /Commit&lt;/pre&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;6) Build a CD and boot, or boot using the bootmgr Macrium Rescue Environment menu option.&lt;/div&gt;&lt;div&gt;To start TrueCrypt, type&lt;pre&gt;"x:\program files\truecrypt\truecrypt.exe"&lt;/pre&gt;&lt;/div&gt;&lt;div&gt;Select a file, or if disk/partition encryption is used select a device. Enter your password, (you may need to select the "mount partition using system encryption without pre-boot authentication"). Hit mount. The encrypted volume will appear as a new drive letter. Use PE Explorer to browse and copy files as required.&lt;/div&gt;&lt;div&gt; &lt;/div&gt;&lt;div&gt;&lt;img alt="" src="http://kb.macrium.com/Uploads/Images/DiskEncryption/TrueCryptPEMount.png" style="width: 729px; height: 693px; " /&gt; &lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;h2&gt;How to add Bitlocker features to the rescue environment&lt;/h2&gt;&lt;div&gt;This enables you to mount bit locker encrypted disks in the macrium rescue environment.&lt;/div&gt;&lt;div&gt;It does not allow you to restore to an encrypted system disk or encrypt a system disk after a Macrium restore.&lt;/div&gt;&lt;/div&gt;&lt;div&gt;&lt;span id="ctl00_ctlContentPlaceHolder_ctl00_ctl00_ctlPanelBar_lblArticleText"&gt;&lt;p&gt;This solution only works if you are have the Microsoft WAIK installed. It will be installed automatically if you create a v5 custom PE &lt;span class="glossaryToolTip"&gt;rescue CD&lt;/span&gt;.&lt;/p&gt;&lt;p&gt;First configure Reflect to use a custom base wim (see &lt;a href="http://kb.macrium.com/KnowledgebaseArticle50140.aspx#customwim"&gt;here&lt;/a&gt;).&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;Then mount your wim, this will take a couple of minutes. Ensure you use the path to your custom wim.&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;pre&gt;&lt;/pre&gt;&lt;pre&gt;dism /mount-wim /wimfile:C:\Program Files\Windows AIK\Tools\PETools\x86\custom.wim /index:1 /MountDir:C:\boot\macrium\WAIKFiles\mount&lt;/pre&gt;&lt;p&gt;Then add the wmi package to your wim.&lt;/p&gt;&lt;p&gt;&lt;code&gt;dism /image:c:\winpe_x86\mount /add-package/packagepath:"c:\Program Files\WindowsAIK\Tools\PETools\x86\WinPE_FPs\WinPE-WMI.cab"&lt;/code&gt;&lt;/p&gt;&lt;p&gt;Then unmount your your wim, this will take a couple of minutes.&lt;/p&gt;&lt;pre&gt;dism /Unmount-Wim /MountDir:C:\boot\macrium\WAIKFiles\mount /Commit&lt;/pre&gt;&lt;p&gt;&lt;/p&gt;&lt;/span&gt;&lt;/div&gt;&lt;span id="BugEvents"&gt;With the wmi component added, a bitlocker volume can now be unlocked.&lt;br /&gt;&lt;pre&gt;manage-bde -unlock e: -recoverypassword &amp;lt;key found in bk file&amp;gt;&lt;key&gt;&lt;/key&gt;&lt;/pre&gt;Once unlocked, the partition appears in Reflect as a standard volume andcan be imaged and browsed as such. If an image is restored, the volume becomes a standard(un-encrypted) volume. It can be re-encrypted when you boot back into windows.&lt;/span&gt;&lt;div&gt;&lt;span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span id="BugEvents"&gt;Manage-bde command line help, note not all the options work in the PE environment ...&lt;br /&gt;&lt;a rel="nofollow" href="http://technet.microsoft.com/en-us/library/ff829849%28v=ws.10%29.aspx"&gt;http://technet.microsoft.com/en-us/library/ff829849%28v=ws.10%29.aspx&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;h2&gt;&lt;a name="customwim"&gt;&lt;/a&gt;How to configure Reflect to use a custom base wim&lt;/h2&gt;&lt;div&gt;If 32bit copy ...&lt;/div&gt;&lt;div&gt;C:\Program Files\Windows AIK\Tools\PETools\x86\winpe.wim&lt;/div&gt;&lt;div&gt;to&lt;/div&gt;C:\Program Files\Windows AIK\Tools\PETools\x86\custom.wim&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;else if 64bit ...&lt;/div&gt;&lt;div&gt;&lt;div&gt;&lt;div&gt;C:\Program Files\Windows AIK\Tools\PETools\amd64\winpe.wim&lt;/div&gt;&lt;div&gt;to&lt;/div&gt;C:\Program Files\Windows AIK\Tools\PETools\amd64\custom.wim&lt;/div&gt;&lt;br class="Apple-interchange-newline" /&gt;&lt;/div&gt;&lt;div&gt;Then click rebuild in the rescue media wizard, setting the custom wim option, and its path to your new custom.wim.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;img alt="" src="http://kb.macrium.com/Uploads/Images/UnderstandingCDs/DiskEncryption/waik.png" style="width: 600px; height: 590px; " /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;</description><pubDate>Mon, 23 Jan 2012 16:04:55 GMT</pubDate><dc:creator>john.pendleton@macrium.com</dc:creator></item><item><title>Backup Aborted! - Unable to lock volume</title><link>http://kb.macrium.com/Goto50139.aspx</link><description>&lt;strong&gt;&lt;span style="font-size: 18px;"&gt;Error&lt;/span&gt;&lt;/strong&gt;&lt;strong&gt;&lt;span style="color: #ff0000;"&gt;&lt;br /&gt;Error: &lt;span style="font-family: tahoma; font-size: 13px;"&gt;&lt;strong&gt;&lt;span style="color: #ff0000;"&gt;Backup aborted! - Unable to lock &amp;lt;volume&amp;gt;, &lt;span id="msg" class="spnMessageText" style="font-family: trebuchet ms,arial,helvetic; font-size: 13px; color: darkslategray;"&gt;&lt;strong&gt;&lt;span style="color: red;"&gt;Please reboot and retry&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;hr /&gt;&lt;/span&gt;&lt;/strong&gt;&lt;strong&gt;&lt;span style="font-size: 18px;"&gt;Description&lt;br /&gt;&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;This error can be generated during a backup operation when VSS fails to create a snapshot and the alternate Paramount Software snapshot driver fails to start. This issue can only occur on 32 bit XP and Vista based operating systems.&lt;br /&gt;&lt;br /&gt;&lt;hr /&gt;&lt;strong&gt;&lt;span style="font-size: 18px;"&gt;Solution&lt;/span&gt;&lt;/strong&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;The following solutions are available:&lt;/p&gt;&lt;ul&gt;    &lt;li&gt;Reboot the machine and attempt the backup again. It is possible that the machine was not rebooted after Macrium Reflect was installed.  The alternate snapshot driver requires the machine to be rebooted before it can start successfully.&lt;/li&gt;    &lt;li&gt;Reinstall the software, reboot the machine and attempt the backup again.&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Ultimately it is advisable, and highly desirable, to get VSS working correctly on the computer that you are attempting to backup. Please see the &lt;a href="http://kb.macrium.com/KnowledgebaseCategory6.aspx"&gt;VSS Errors Category&lt;/a&gt; for further assistance with getting VSS working.&lt;/p&gt;</description><pubDate>Wed, 18 Jan 2012 14:00:05 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>Macrium Reflect Support, Updates and Upgrades</title><link>http://kb.macrium.com/Goto50138.aspx</link><description>&lt;p&gt;Macrium Software takes customer support seriously and this article describes duration and nature of that support.  The support for the current version 5 is the same as that for the previous version 4.   There has been no downgrading of support, we pride ourselves on the support given.&lt;br /&gt;&lt;br /&gt;There are 4 parts to this article, click on the appropriate link:&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&lt;a href="http://kb.macrium.com/KnowledgebaseArticle50138.aspx#Support,_Updates_and_Upgrades_for_v4_&amp;amp;_v5_editions_of_Macrium_Reflect"&gt;Support, Updates and Upgrades for v4 &amp;amp;  v5 editions of Macrium Reflect&lt;/a&gt;&lt;br /&gt;&lt;a href="http://kb.macrium.com/KnowledgebaseArticle50138.aspx#Clarifying_the_License_Duration_and_Support_for_the_different_Macrium_Products"&gt;Clarifying the License Duration and Support for the different Macrium Products&lt;/a&gt;&lt;/strong&gt;&lt;strong&gt;&lt;br /&gt;&lt;a href="http://kb.macrium.com/KnowledgebaseArticle50138.aspx#How_to_contact_Macrium_Support"&gt;How to contact Macrium Support&lt;/a&gt;&lt;/strong&gt;&lt;strong&gt;&lt;br /&gt;&lt;a href="http://kb.macrium.com/KnowledgebaseArticle50138.aspx#Links_to_other_sources_of_Help:"&gt;Links to other sources of Help&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;&lt;hr /&gt;&lt;h3&gt;&lt;a name="Support,_Updates_and_Upgrades_for_v4_&amp;amp;_v5_editions_of_Macrium_Reflect"&gt;Support, Updates and Upgrades for v4 &amp;amp;v5 editions of Macrium Reflect&lt;/a&gt;&lt;/h3&gt;&lt;p&gt;When you purchase the v4 Standard edition or v5 Standard/Professional/Server editions of Macrium Reflect, &lt;strong&gt;Macrium Support&lt;/strong&gt; is provided free for one year or until a major release (for example 4.x to 5.x) whichever is the longer.  You are guaranteed at least one year of free support.  To maintain support after this time you are required to upgrade to the latest version of Macrium Reflect (currently version 5).&lt;/p&gt;&lt;p&gt;Macrium Support is by e-mail and support forum access.  Many problems can be solved by finding solutions within the Forum, Knowledge base (KB)Tutorials, Help Tutorials and YouTube videos; these are instant solutions rather than wait for Macrium Support to respond (usually within 24 hours during weekdays).  More on how to get support below.&lt;/p&gt;&lt;p&gt;Same version &lt;strong&gt;updates&lt;/strong&gt; (4.x to 4.x  or  5.x to 5.x) are free for life.&lt;/p&gt;&lt;p&gt;Major &lt;strong&gt;upgrades&lt;/strong&gt; (for example 4.x to 5.x) are chargeable but with an upgrade discount.&lt;/p&gt;&lt;hr /&gt;&lt;p style="background-color: #ffff99;"&gt;&lt;em&gt;&lt;strong&gt;Please note&lt;/strong&gt;&lt;/em&gt; that e-mail Macrium Support is only available for the purchased editions and the full 30 day trial; also only those who purchase can post questions in the Forum.&lt;br /&gt;&lt;br /&gt;The free edition is not supported although users do have access to view the Forum, Knowledge Base (KB) Tutorials, Help Tutorials and YouTube videos; but cannot post questions in the Forum.&lt;/p&gt;&lt;hr style="height: 4px; background-color: #000000;" /&gt;&lt;h3&gt;&lt;a name="Clarifying_the_License_Duration_and_Support_for_the_different_Macrium_Products"&gt;Clarifying the License Duration and Support for the different Macrium Products&lt;/a&gt;&lt;/h3&gt;   &lt;h4&gt;v4 Standard edition and v5 Standard/Professional/Server editions&lt;/h4&gt;&lt;p&gt;Each Macrium Reflect license key, for v4 Standard edition or v5 Standard/Professional/Server editions, is for onecomputer.  You may only transfer the license key to another computer for legitimate upgrade/replacement purposes.&lt;/p&gt;&lt;p&gt;When you purchase the v4 Standard edition or v5 Standard/Professional/Server editions you have the software licenses forlife, there is no annual fee to pay.  The exception is when you upgrade, when your old edition is replaced by the upgradededition and your old license key becomes invalid having been replaced by the new upgrade license key.  The supportassociated with these products is described&lt;a href="http://kb.macrium.com/KnowledgebaseArticle50138.aspx#Support,_Updates_and_Upgrades_for_v4_&amp;amp;_v5_editions_of_Macrium_Reflect"&gt;above&lt;/a&gt;in the first part of this article.&lt;/p&gt;&lt;h4&gt;Other Macrium Reflect License types: Technicians and Deployment licenses&lt;/h4&gt;&lt;p&gt;These two license types run alongside v4 Standard edition and v5 Standard/Professional/Server editions.  Theselicenses are mainly used by IT support departments of companies and IT organisations.  The Technicians license lastsfor one year after which it can be renewed; and each Deployment license allows 10 deployments per license, you can purchaseadditional Deployment licenses.    &lt;/p&gt;&lt;ul style="list-style-type: square;"&gt;    &lt;li&gt;    &lt;h4&gt;Technicians License&lt;/h4&gt;    &lt;p&gt;Macrium Support for the Technicians license is available while the Technicians license is valid.  This is normally    1 year from the date the Technicians license is purchased or renewed.    &lt;/p&gt;    &lt;p&gt;There are 2 versions of the Technicians license - Standard and Enterprise: both allow use on unlimited    workstations but the Standard edition can only be used on up to 10 Servers whilst the Enterprise edition can be used on unlimited    Servers.     &lt;/p&gt;    &lt;p&gt;A recent change to purchasing a Technicians license means you now get supplied a v5 Server edition of Macrium Reflect with    the Technicians license.   This Macrium Reflect server license supplied with the Technicians license is different from a normal    Server license in that it includes 'upgrade protection'.  As long as the technicians license is renewed annually then all future    upgrades of this license are free (for example v5 to v6 etc..).    &lt;/p&gt;    &lt;/li&gt;    &lt;li&gt;    &lt;h4&gt;Deployment License&lt;/h4&gt;    &lt;p&gt;Support for the Deployment license is associated with the full license which is being used to deploy the backups. If you    have a previous version of Macrium Reflect where support has expired it is strongly recommended that you upgrade. If you    purchase a Deployment license where your associated full license support has expired then you will only get support within    30 days of the purchase date of the Deployment license.    &lt;/p&gt;    &lt;/li&gt;&lt;/ul&gt;&lt;p&gt;For more information on Technicians and Deployment licenses see related links below.&lt;/p&gt;&lt;hr /&gt;&lt;h3&gt;&lt;a name="How_to_contact_Macrium_Support"&gt;How to contact Macrium Support&lt;/a&gt;&lt;/h3&gt;&lt;ol style="list-style-type: lower-alpha;"&gt;    &lt;li&gt;The first stage is to complete a    &lt;a href="http://www.macrium.com/ticket.aspx" target="_blank"&gt;&lt;strong&gt;support    ticket.  &lt;/strong&gt;&lt;/a&gt; Click on this link for the ticket dialog.  Complete the form by completing all    &lt;span style="color: #ff0000;"&gt;&lt;em&gt;required&lt;/em&gt;&lt;/span&gt;    boxes.   Complete the message box with detail of    the reason or problem you are having together with any    error messages.  When requesting support please quote your    latest valid license key where possible.  You may also    attach logs and error dialogs as necessary.  Then click    on '&lt;strong&gt;&lt;em&gt;Next&lt;/em&gt;&lt;/strong&gt;'.&lt;br /&gt;    &lt;img alt="" style="padding-top: 4px; padding-bottom: 2px; padding-left: 0px; margin-left: 0px;" src="http://kb.macrium.com/Uploads/Images/support_ticket.jpg" /&gt;    &lt;br /&gt;    You can use the support ticket for Sales queries as well as Support queries    by selecting within the    &lt;em&gt;&lt;strong&gt;Contact&lt;/strong&gt;&lt;/em&gt; drop down menu.&lt;/li&gt;    &lt;li&gt;In the next dialog, which appears, you normally will get some links to the 'Knowledge base' which may help with your    problem.  After looking at the links, if you don't find a solution in the returned links, you can    either re-phrase your problem/query and click '&lt;strong&gt;&lt;em&gt;Search    Again&lt;/em&gt;&lt;/strong&gt;'    or click on '&lt;strong&gt;&lt;em&gt;Send&lt;/em&gt;&lt;/strong&gt;' to send your query to Macrium    Support or close    the browser window if you have the answer to your problem.&lt;/li&gt;&lt;/ol&gt;&lt;hr /&gt;&lt;h3&gt;&lt;a name="Links_to_other_sources_of_Help:"&gt;Links to other sources of Help:&lt;/a&gt;&lt;/h3&gt;&lt;ol style="list-style-type: lower-roman;"&gt;    &lt;li&gt;For a link to the Knowledge Base where you may Search or use popular    tags to get help and tutorials click    &lt;a href="http://kb.macrium.com/" target="_blank"&gt;&lt;strong&gt;here&lt;/strong&gt;&lt;/a&gt;. &lt;/li&gt;    &lt;li&gt;To go to the Macrium Reflect FORUM click    &lt;a href="http://support.macrium.com/" target="_blank"&gt;&lt;strong&gt;here&lt;/strong&gt;&lt;/a&gt;.    &lt;/li&gt;    &lt;li&gt;To go to the 'Help' tutorials click    &lt;a href="http://www.macrium.com/help.aspx" target="_blank"&gt;&lt;strong&gt;here&lt;/strong&gt;&lt;/a&gt;, you can also access the Help    tutorials when running Macrium Reflect from the 'Help' menu by selecting    'Help'. &lt;/li&gt;    &lt;li&gt;To see a range of YouTube videos on using Macrium Reflect click    &lt;a href="http://www.youtube.com/user/Macrium" target="_blank"&gt;&lt;strong&gt;here&lt;/strong&gt;&lt;/a&gt;.&lt;/li&gt;&lt;/ol&gt;</description><pubDate>Mon, 16 Jan 2012 22:15:08 GMT</pubDate><dc:creator>evan.tringham@macrium.com</dc:creator></item><item><title>BAD_POOL_HEADER BSOD during backup on Windows XP or 2003 </title><link>http://kb.macrium.com/Goto50137.aspx</link><description>&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;If you are experiencing a Blue screen of death (BSOD) or a sudden reboot during a backup on Windows XP or 2003, then consider the following solution.This applies to any software that engages VSS, not just Macrium Refect.&lt;/p&gt;A BSOD is the error message resulting from a kernel mode crash. These are typically caused by either faulty drivers or failing hardware. Unfortunately, Windows is often configured to reboot after crash so the BSOD message is hidden. If your machine suddenly and unexpectedly reboots, this is typically due to a kernel mode crash. You can either configure your machine not to reboot on a BSOD (see &lt;a href="http://support.microsoft.com/kb/307973"&gt;here [support.microsoft.com]&lt;/a&gt;) or use the free tool &lt;a class="ApplyClass" href="http://www.nirsoft.net/utils/blue_screen_view.html"&gt;blue screen view [www.nirsoft.net]&lt;/a&gt; to display previous BSOD errors.&lt;br /&gt;&lt;br /&gt;If the BSOD error is BAD_POOL_HEADER and you have during a backup the following solution might fix your issue.&lt;br /&gt;&lt;br /&gt;&lt;img alt="" src="http://kb.macrium.com/Uploads/Images/BAD_POOL/bsod.jpg" /&gt;&lt;br /&gt;&lt;span id="BugEvents"&gt;&lt;br /&gt;1. Go to windows Device Manager ( &lt;a href="http://support.microsoft.com/kb/307970" rel="nofollow"&gt;http://support.microsoft.com/kb/307970&lt;/a&gt; )&lt;br /&gt;2. Click "view" and select "show hidden devices"&lt;br /&gt;3. Scroll down to "storage volumes"&lt;br /&gt;4. Click on the plus to expand.&lt;br /&gt;5. Click on each one listed and right click and uninstall. You mayget a message indicating a reboot is required. Selectno until you do them all.&lt;br /&gt;6. Reboot.&lt;br /&gt;7. Wait till windows automatically reinstalls devices. You may get a prompt to reboot again.&lt;br /&gt;8 Reboot.&lt;/span&gt;&lt;br /&gt;&lt;img alt="" src="http://kb.macrium.com/Uploads/Images/BAD_POOL/DeviceManager.png" /&gt;&lt;br /&gt;&lt;br /&gt;Note that imaging your system involves the transfer of volumes of data much higher than you experience in normal system operation. This can reveal real latent hardware issues.  If the above solution does not fix your issue, or you are receiving a different BSOD, then&lt;span style="color: #ff0000;"&gt;&lt;/span&gt; consider replacing your hardware or checking for loose / faulty leads or cooling issues such as loose heat sinks or faulty fans.&lt;br /&gt;</description><pubDate>Fri, 06 Jan 2012 15:27:07 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>Anti-virus, Registry cleaners and uninstallers</title><link>http://kb.macrium.com/Goto50135.aspx</link><description>&lt;h2&gt;Introduction&lt;/h2&gt;&lt;blockquote&gt;&lt;div&gt;By their very nature, anti-virus and registry cleaner software may interfere with the normal operation of legitimately installed applications. This article outlines some of the issues this causes with Macrium Reflect and provides some solutions.&lt;/div&gt;&lt;/blockquote&gt;&lt;h2&gt;&lt;hr /&gt;Anti-virus software&lt;/h2&gt;&lt;strong&gt;Problems&lt;/strong&gt;&lt;br /&gt;&lt;blockquote&gt;&lt;strong&gt;&lt;em&gt;Imaging&lt;/em&gt;&lt;/strong&gt;&lt;br /&gt;&lt;/blockquote&gt;&lt;blockquote&gt;When imagining your disk, Macrium Reflect performs a number of actions that some anti-virus software may think of as being malicious. For example, when imaging or cloning your disk Macrium Reflect reads certain parts of the disk that are not generally accessed by every day applications. Reflect also writes very large files (the image file) which again is sometimes seen as being malicious by some anti-virus software. Specifically, it is often the case that imaging a drive will lock up or abort when 99% complete.&lt;br /&gt;&lt;/blockquote&gt;&lt;blockquote&gt;&lt;strong&gt;&lt;em&gt;Performance&lt;/em&gt;&lt;/strong&gt;&lt;br /&gt;&lt;/blockquote&gt;&lt;blockquote&gt;Anti-virus software is also sometimes responsible for significant degradation in the speed of imaging and restoration since the anti-virus process is constantly applying its rules to everything that Macrium Reflect and the other processes running on your PC are doing.&lt;br /&gt;&lt;/blockquote&gt;&lt;blockquote&gt;&lt;strong&gt;&lt;em&gt;Downloading&lt;/em&gt;&lt;/strong&gt;&lt;br /&gt;&lt;/blockquote&gt;&lt;blockquote&gt;When downloading a file onto your PC, before it has been written to your disk prior to execution, anti-virus software may exclusively lock file and scan it for viruses. Unfortunately, this may result in corruption of the download. &lt;br /&gt;&lt;/blockquote&gt;&lt;strong&gt;Solution&lt;/strong&gt;&lt;br /&gt;&lt;blockquote&gt;You should add the Macrium Reflect executable to the white list or trusted zone of your anti-virus software. The executable that runs Macrium Reflect is Reflect.exe and is generally located in C:\Program Files\Macrium\Reflect.  We also recommend that you should exclude the scanning of .MRIMG and .MRBAK files.&lt;br /&gt;&lt;/blockquote&gt;&lt;div&gt;&lt;blockquote&gt;Turning the security level to a lower setting or off completely may also have the desired effect. In testing we have found that with some products, the only way to proceed has been to remove the anti-virus software from the PC entirely. &lt;/blockquote&gt;&lt;/div&gt;&lt;div&gt;&lt;blockquote&gt;It is perhaps an ironic paradox that in their pursuit of "total security" some anti-virus programs have started to exhibit virus-like behaviour by stopping applications performing legitimate actions and compromising your PC by corrupting the data they seek to protect and reducing its performance.&lt;br /&gt;&lt;/blockquote&gt;&lt;h2&gt;&lt;hr /&gt;Registry Cleaners&lt;/h2&gt;&lt;p&gt;&lt;strong&gt;Overview&lt;/strong&gt;&lt;/p&gt;&lt;blockquote&gt;&lt;p&gt;The registry is a key component of Microsoft Windows and provides an indexed store of values. Any application running on Windows may use the registry although there are certain guidelines on it's correct use. Although most application vendors conform to these guidelines, there is a perceived belief that a large registry contributes to the slow running of a PC. To tackle this problem, there are products that claim to make your computer faster by cleaning the registry and removing data no longer in use. There is no way of determining if a value stored in the registry is in use so the cleaners make a best-guess based on studying commonly used Windows applications and how they affect the registry.&lt;/p&gt;&lt;/blockquote&gt;&lt;p&gt;&lt;strong&gt;Problems&lt;/strong&gt;&lt;/p&gt;&lt;blockquote&gt;&lt;p&gt;Since Macrium Reflect uses the registry, cleaners that are unaware of Macrium Reflect may see the keys it uses as reduntant and remove them accordingly. The result of doing so can cause unpredictable behaviour by Macrium Reflect, such as your key appearing to become expired and being unable to mount images.&lt;/p&gt;&lt;/blockquote&gt;&lt;p&gt;&lt;strong&gt;Solution&lt;/strong&gt;&lt;/p&gt;&lt;blockquote&gt;&lt;p&gt;We do not recommend the use of Registry Cleaners. The Windows registry is exceedingly complex and used by every aspect of your PC. &lt;/p&gt;&lt;/blockquote&gt;&lt;h2&gt;&lt;strong&gt;&lt;hr /&gt;Uninstallers&lt;/strong&gt;&lt;/h2&gt;&lt;blockquote&gt;&lt;p&gt;We have had a number of issues where users have been unable to uninstall Macrium Reflect. This may be caused by software that deletes the files on your PC that Macrium uses to safely uninstall itself. If these files are removed, it no longer becomes possible to uninstall Reflect. Generally these files reside in folder 'c:\windows\installer' with extension '.msi'. Deleting any files from this folder should be avoided as this will likely cause future problems when upgrading or uninstalling. &lt;/p&gt;&lt;/blockquote&gt;&lt;blockquote&gt;&lt;p&gt;&lt;strong&gt;Solution&lt;/strong&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;blockquote&gt;&lt;p&gt;We do not recommend the use of uninstaller programs. Windows provides an entirely adequate framework for installing and uninstalling software and problems in this area are inevitably caused by the applications being installed, not by Windows. If you have issues uninstalling Macrium Reflect please contact &lt;a class="ApplyClass" href="http://www.macrium.com/ticket.aspx"&gt;support&lt;/a&gt;. &lt;/p&gt;&lt;/blockquote&gt;&lt;p&gt;&lt;/p&gt;&lt;hr /&gt;&lt;p&gt;&lt;/p&gt;&lt;/div&gt;</description><pubDate>Wed, 04 Jan 2012 15:16:04 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>Backup aborted! - Write operation failed - The request could not be performed because of an I/O device error</title><link>http://kb.macrium.com/Goto50133.aspx</link><description>&lt;strong&gt;&lt;span style="font-size: 18px; "&gt;Error&lt;/span&gt;&lt;/strong&gt;&lt;strong&gt;&lt;span style="color: #ff0000; "&gt;&lt;br /&gt;Error: &lt;span style="font-family: tahoma; font-size: 13px; "&gt;&lt;strong&gt;&lt;span style="color: #ff0000; "&gt;Backup aborted! - Write operation failed - The request could not be performed because of an I/O device error&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;hr /&gt;&lt;/span&gt;&lt;/strong&gt;&lt;strong&gt;&lt;span style="font-size: 18px; "&gt;Description&lt;br /&gt;&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;This error is generated by the Windows operating system and isalways caused by I/O (Input/Output) throughput issues with either thedisk or the controller that it is attached to.  This issue can arisefrom either a backup or restore operation. &lt;br /&gt;&lt;br /&gt;&lt;hr /&gt;&lt;strong&gt;&lt;span style="font-size: 18px; "&gt;Ensure external disks are optimized for performance&lt;/span&gt;&lt;/strong&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;External disks can be configured either for Performance or for Quick Removal.  When configured for Quick Removal, Windows will disable write caching to the disk thereby slowing down throughput.  All writes will go direct to the disk and throughput IO collisions can occur.  It is recommended that external disks are configured for Performance when you encounter the 1117 error code.  Follow these steps to configure the disk:&lt;/p&gt;&lt;p&gt;&lt;span&gt;&lt;/span&gt;&lt;/p&gt;&lt;ul&gt;&lt;span&gt;    &lt;li&gt;&lt;span&gt;Click Start, click Run, type devmgmt.msc, and then click OK.&lt;/span&gt;&lt;/li&gt;    &lt;li&gt;&lt;span&gt;Expand 'Disk Drives'. Right-click the device, and then click Properties&lt;br /&gt;    &lt;/span&gt;&lt;/li&gt;    &lt;li&gt;&lt;span&gt;Click the Policies tab.&lt;br /&gt;    &lt;/span&gt;&lt;/li&gt;    &lt;li&gt;&lt;span&gt;Click Optimize for performance, and then click OK.&lt;br /&gt;    &lt;/span&gt;&lt;/li&gt;    &lt;li&gt;&lt;span&gt;Restart the computer&lt;/span&gt;&lt;/li&gt;    &lt;/span&gt;&lt;/ul&gt;    &lt;p&gt;After restarting your computer we recommend trying another backup to see if this has resolved your issue.&lt;/p&gt;    &lt;p&gt;&lt;/p&gt;    &lt;hr /&gt;    &lt;p&gt;&lt;/p&gt;    &lt;p&gt;&lt;strong&gt;&lt;span style="font-size: 18px; "&gt;Enable Write Caching&lt;br /&gt;    &lt;/span&gt;&lt;/strong&gt;&lt;span xmlns="http://www.w3.org/1999/xhtml"&gt;&lt;br /&gt;    You make also want to enable write caching, This solution is used exclusively for backup operations.&lt;br /&gt;    &lt;/span&gt;&lt;/p&gt;    &lt;ul&gt;        &lt;li&gt;Take the menu option Other Tasks &amp;gt; Edit Defaults&lt;/li&gt;        &lt;li&gt;Select the Advanced category along the top toolbar.&lt;/li&gt;        &lt;li&gt;Select the Advanced Backup Options&lt;/li&gt;        &lt;li&gt;Ensure the option 'Enable file write caching' has a check against it.&lt;/li&gt;        &lt;li&gt;Click Ok to save the Macrium Reflect defaults.&lt;/li&gt;    &lt;/ul&gt;    &lt;div&gt;&lt;hr /&gt;    &lt;/div&gt;    &lt;span xmlns="http://www.w3.org/1999/xhtml"&gt;    &lt;p&gt;&lt;span&gt;Please try another backup when the above steps have been performed.&lt;/span&gt;&lt;/p&gt;    &lt;/span&gt;    &lt;p&gt;&lt;/p&gt;    &lt;ul&gt;&lt;span&gt;        &lt;/span&gt;    &lt;/ul&gt;</description><pubDate>Tue, 20 Dec 2011 12:02:19 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>How to run an elevated command prompt</title><link>http://kb.macrium.com/Goto50132.aspx</link><description>&lt;h2&gt;Description&lt;/h2&gt;When trouble shooting, Macrium Support may request that commands be run in an MS-DOS command prompt under elevated mode.  Elevated mode is where a program is run under Windows using Administrator privileges.  It is not enough to already be a member of the Administrators group, even when a member of this group commands still need to be elevated to gain privileges.&lt;br /&gt;&lt;br /&gt;Under Windows XP and Windows Server 2003, there is no concept of elevated command prompts, on these platforms running a command prompt with Administrator privileges will achieve the same effect.  Elevated mode was a restriction introduced by Windows Vista User Access Control.&lt;br /&gt;&lt;br /&gt;&lt;hr /&gt;&lt;h2&gt;Windows XP &amp;amp; Windows Server 2003&lt;/h2&gt;If you are already a member of the Administrators group (or a group with administrator privileges) then you do not need to follow these steps, you can simply run a command prompt.&lt;br /&gt;&lt;br /&gt;To run an Administrator command prompt under Windows XP and Windows Server 2003 operating systems (see sample screenshot below):&lt;br /&gt;&lt;ul&gt;    &lt;li&gt;Click Start&lt;/li&gt;    &lt;li&gt;Select All Programs&lt;/li&gt;    &lt;li&gt;Select Accessories&lt;/li&gt;    &lt;li&gt;Highlight Command Prompt&lt;/li&gt;    &lt;li&gt;Right Click&lt;/li&gt;    &lt;li&gt;From the popup menu click Run As&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;/p&gt;&lt;blockquote&gt;&lt;p&gt;&lt;img alt="" src="http://kb.macrium.com/Uploads/Images/xp_cmd.png" /&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;br /&gt;After clicking Run As the a further dialog will be shown (see screenshot below), perform the following actions on this dialog:&lt;br /&gt;&lt;ul&gt;    &lt;li&gt;Select the radio button 'The following user'&lt;/li&gt;    &lt;li&gt;Select the Administrator user from the list of available user names&lt;/li&gt;    &lt;li&gt;Enter the password for the selected administrator user&lt;/li&gt;    &lt;li&gt;Click Ok to launch the elevated command prompt &lt;/li&gt;&lt;/ul&gt;&lt;blockquote&gt;&lt;img alt="" src="http://kb.macrium.com/Uploads/Images/xp_runas.png" /&gt;&lt;br /&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;hr /&gt;&lt;h2&gt;Windows Vista, Windows 7 and Windows Server 2008 Family&lt;/h2&gt;To run an elevated command prompt under Windows Vista, Windows 7 and the Windows Server 2008 family of operating systems (see sample screenshot below):&lt;br /&gt;&lt;ul&gt;    &lt;li&gt;Click Start&lt;/li&gt;    &lt;li&gt;In the search box type in cmd&lt;/li&gt;    &lt;li&gt;Right click cmd.exe in the search results list&lt;/li&gt;    &lt;li&gt;Click 'Run as administrator' from the popup menu&lt;/li&gt;    &lt;li&gt;If you are not an administrator of the computer a dialog box will be shown prompting for the administrator password&lt;/li&gt;&lt;/ul&gt;&lt;blockquote&gt;&lt;p&gt;&lt;img alt="" src="http://kb.macrium.com/Uploads/Images/vista_cmd.png" /&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;p&gt;&lt;/p&gt;</description><pubDate>Tue, 20 Dec 2011 08:50:35 GMT</pubDate><dc:creator>chris.bamford@macrium.com</dc:creator></item><item><title>'SPSearch4 VSS Writer' is in failed state! (Result Code: 0x8000ffff)</title><link>http://kb.macrium.com/Goto50131.aspx</link><description>&lt;p&gt;&lt;strong&gt;&lt;span style="font-size: 18px;"&gt;Error&lt;/span&gt;&lt;/strong&gt;&lt;strong&gt;&lt;span style="color: #ff0000;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&lt;span style="color: #ff0000;"&gt;&lt;span style="font-family: tahoma; font-size: 13px;"&gt;&lt;strong&gt;&lt;span style="color: #ff0000;"&gt;ERROR: Selected writer 'SPSearch4 VSS Writer' is in failed state! &lt;br /&gt;Backup aborted! - Failed To Create Volume Snapshot. Result Code: 0x8000ffff &lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/strong&gt;&lt;strong&gt;&lt;span style="color: #ff0000;"&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;strong&gt;&lt;hr /&gt;&lt;/strong&gt;&lt;p&gt;&lt;/p&gt;&lt;strong&gt;&lt;span style="font-size: 18px;"&gt;Description&lt;br /&gt;&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;There has recently been a number of issues with Sharepoint 2010 and Macrium Reflect. This issue occurs if you are sunning Sharepoint 2010 on Windows SBS 2011 and have Sharepoint SP1 installed (KB2510766). To remedy this issue you will need to use the psconfig (powershell configurator) utility which will be installed on your server.&lt;br /&gt;&lt;br /&gt;Microsoft SharePoint Foundation 2010 Service Pack 1 (SP1) was recently released through Microsoft Update. On a default installation, Windows SBS 2011 Standard administrators should be able to see it in the SBS Console and would need to approve it for installation before it is offered for installation on the server. &lt;br /&gt;&lt;br /&gt;Since SharePoint Foundation 2010, patching SharePoint is a two-step process. The updated binaries are first installed and then PSCONFIG must be completed to update the SharePoint databases.&lt;br /&gt;&lt;br /&gt;&lt;hr /&gt;&lt;strong&gt;&lt;span style="font-size: 18px;"&gt;Solution&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;Check your Windows event log it may contain one of the following errors with regard to Sharepoint:&lt;span xmlns="http://www.w3.org/1999/xhtml"&gt;&lt;p&gt;The Following errors may be found in the server application log:&lt;/p&gt;&lt;blockquote&gt;&lt;p&gt;Log Name: Application &lt;br /&gt;Source: Microsoft-SharePoint Products-SharePoint Foundation Search &lt;br /&gt;Event ID: 70 &lt;br /&gt;Task Category: Gatherer &lt;br /&gt;Level: Error &lt;br /&gt;User: CONTOSO\spsearch &lt;br /&gt;Computer: CONTOSO-SERVER.contoso.local &lt;br /&gt;Description: &lt;br /&gt;The mount operation for the gatherer application 37ad8233-57f1-47b1-873e-6a91d0f1bc36 has failed because the schema version of the search administration database is less than the minimum backwards compatibility schema version supported for this gatherer application. The database might not have been upgraded.&lt;br /&gt;Log Name:      Application &lt;br /&gt;&lt;br /&gt;Source:        Microsoft-Windows-Backup &lt;br /&gt;Event ID:      521 &lt;br /&gt;Level:         Error &lt;br /&gt;User:          SYSTEM &lt;br /&gt;Description: &lt;br /&gt;The backup operation that started at '?2011?-?07?-?06T02:12:07.198000000Z' has failed because the Volume Shadow Copy Service operation to create a shadow copy of the volumes being backed up failed with following error code '2155348129'. Please review the event details for a solution, and then rerun the backup operation once the issue is resolved. &lt;/p&gt;&lt;/blockquote&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;You can also run the following commands to determine if you need to complete the update process with PSCONFIG:&lt;/p&gt;&lt;ul&gt;    &lt;li&gt;Launch an elevated (Run as Administrator) SharePoint 2010 Management shell from start, All Programs, Microsoft SharePoint 2010 Products, SharePoint 2010 Management Shell. &lt;/li&gt;    &lt;li&gt;Once the shell opens, type the following command followed by enter: &lt;br /&gt;    &lt;br /&gt;    &lt;strong&gt;(get-spserver $env:computername).NeedsUpgrade&lt;/strong&gt; &lt;/li&gt;&lt;/ul&gt;&lt;ol&gt;&lt;span&gt;&lt;/span&gt;&lt;/ol&gt;    &lt;/span&gt;&lt;img alt="" src="http://blogs.technet.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-46-91-metablogapi/8780.image_5F00_thumb_5F00_5D0E612D.png" /&gt;&lt;br /&gt;    &lt;br /&gt;    &lt;br /&gt;    If the result of this command is 'True', then you need to complete the steps below. If the result is False then no further action is needed, if you are encountering similar events the cause will most likely not be resolved by the following steps. To complete the SharePoint service pack process you need to follow the same steps that were previously posted on &lt;a href="http://blogs.technet.com/b/sbs/"&gt;the Official SBS Blog&lt;/a&gt; regarding the necessity to complete PSCONFIG after a SharePoint update. Here are the steps from &lt;a href="http://blogs.technet.com/b/sbs/archive/2011/05/24/you-must-manually-run-psconfig-after-installing-sharepoint-2010-patches.aspx"&gt;the article&lt;/a&gt;:    &lt;p&gt;In order to update the SharePoint databases, you must manually run the PSconfig utility. To run the utility:&lt;/p&gt;    &lt;p&gt;1. Open an Administrative command prompt. &lt;br /&gt;    2. Change directory to C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\BIN &lt;br /&gt;    3. Run &lt;strong&gt;PSConfig.exe -cmd upgrade -inplace b2b -force -cmd applicationcontent -install -cmd installfeatures&lt;/strong&gt;&lt;/p&gt;    &lt;p&gt;Note: The Companyweb site will be inaccessible while the command is running. It is best to run the command after business hours. The amount of time the command takes to run will vary on the size of the database and the speed of the machine. On a reference machine with 8 logical processors, 32GB of RAM and a 2GB content database, the command took approximately 5 minutes to execute.&lt;/p&gt;    &lt;p&gt;Original source: &lt;span id="BugEvents"&gt;&lt;a rel="nofollow" href="http://blogs.technet.com/b/sbs/archive/2011/07/06/potential-issues-after-installing-sharepoint-foundation-2010-sp1.aspx"&gt;http://blogs.technet.com/b/sbs/archive/2011/07/06/potential-issues-after-installing-sharepoint-foundation-2010-sp1.aspx&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;</description><pubDate>Sat, 17 Dec 2011 15:10:42 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>Error Code 1117 - I/O error</title><link>http://kb.macrium.com/Goto50130.aspx</link><description>&lt;strong&gt;&lt;span style="font-size: 18px; "&gt;Error&lt;/span&gt;&lt;/strong&gt;&lt;strong&gt;&lt;span style="color: #ff0000; "&gt;&lt;br /&gt;Error: &lt;span style="font-family: tahoma; font-size: 13px; "&gt;&lt;strong&gt;&lt;span style="color: #ff0000; "&gt;Backup aborted! -Unable to read from disk - Error Code 1117 - The request could not beperformed because of an I/O device error.&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;hr /&gt;&lt;/span&gt;&lt;/strong&gt;&lt;strong&gt;&lt;span style="font-size: 18px; "&gt;Description&lt;br /&gt;&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;Error code 1117 is generated by the Windows operating system and is always caused by I/O (Input/Ouput) throughput issues with either the disk or the controller that it is attached to.  &lt;br /&gt;&lt;br /&gt;&lt;hr /&gt;&lt;p&gt;&lt;strong&gt;&lt;span style="font-size: 18px; "&gt;Check the disk for possible errors&lt;br /&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;Perform the steps below fo each volume that you are trying to either create an image of or include in a file &amp;amp; folder backup:&lt;ul&gt;    &lt;li&gt;Run an elevated MS-DOS command prompt. &lt;br /&gt;    Click 'Start' &amp;gt; 'All Programs' &amp;gt; 'Accessories' &amp;gt; 'Command Prompt'  (For Vista/7 right click and select 'Run as Administrator')&lt;br /&gt;    &lt;/li&gt;    &lt;li&gt;At the command prompt type:&lt;br /&gt;    &amp;gt;&lt;span style="font-family: 'courier new'; "&gt;chkdsk &amp;lt;volume drive letter&amp;gt; /r /f&lt;/span&gt;&lt;br /&gt;    &lt;span style="font-family: verdana; "&gt;&lt;br /&gt;    If you receive the message 'Would you like to schedule this volume to be checked the net time your system restarts?' press 'Y' then enter.&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div&gt;&lt;span style="font-family: verdana; "&gt;Your entire file system will be checked for errors and this may take some time to complete.&lt;/span&gt;&lt;/div&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;hr /&gt;&lt;span style="font-size: 18px; "&gt;&lt;strong&gt;&lt;br /&gt;&lt;/strong&gt;&lt;/span&gt;&lt;span xmlns="http://www.w3.org/1999/xhtml"&gt;&lt;ol&gt;&lt;span&gt;    &lt;/span&gt;&lt;/ol&gt;    &lt;/span&gt;    &lt;div style="background-color: #dadce3; "&gt;    &lt;p&gt;&lt;/p&gt;    &lt;/div&gt;</description><pubDate>Fri, 16 Dec 2011 13:49:23 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>v5: How to recover your PC using the Linux Rescue CD</title><link>http://kb.macrium.com/Goto50128.aspx</link><description>&lt;p&gt;The linux CD is a compact and efficient rescue environment to restore all Windowsoperating systems. It will only enable your to restore your imaged partitionsto exactly the same size and position as they were at the time the imagewas created.&lt;/p&gt;&lt;p&gt;If you require more flexible imaging and restore options or your hardware is notsupported then use the Windows PE rescue environment. Note, RAID systems and disks attached via usb3 interfacesare not supported in this rescue environment.&lt;/p&gt;&lt;p&gt;It operates as a wizard, guiding you through locating an image, selecting what to restore and where to restore it to.&lt;/p&gt;&lt;h3&gt;Image location&lt;/h3&gt;&lt;p&gt;First a Macrium image file must be located.&lt;/p&gt;&lt;img alt="" src="http://kb.macrium.com/Uploads/Images/LinuxRestore/locate.png" /&gt;&lt;br /&gt;&lt;ol&gt;    &lt;li type="1" style="list-style: decimal outside none;" class="kadov-p"&gt;    &lt;p&gt;Navigate to the folder that contains the image    to be restored in the left hand pane. Possible locations are network attached    disks, CDs or DVDs, internal hard disks or those attached via USB or eSata.&lt;/p&gt;    &lt;/li&gt;    &lt;li type="1" style="list-style: decimal outside none;" class="kadov-p"&gt;    &lt;p&gt;The backup list shows all backup images in the    selected folder and the pane below shows the partitions included in the    image.&lt;/p&gt;    &lt;/li&gt;    &lt;li type="1" style="list-style: decimal outside none;" class="kadov-p"&gt;    &lt;p&gt;Highlight particular backup image that you want    to restore, the contents of which will be revealed in the lower right    pane. If you have an incremental/differential set, chose the last image in the set, unless you wish to restore to an earlier point in time.&lt;/p&gt;    &lt;/li&gt;    &lt;li type="1" style="list-style: decimal outside none;" class="kadov-p"&gt;    &lt;p&gt;In the case that your images are multi-part images    – typical for images stored on a FAT formatted device such as a USB hard    disk or on CD/DVD recordable media, locate the last image in the set.&lt;/p&gt;    &lt;/li&gt;    &lt;li type="1" style="list-style: decimal outside none;" class="kadov-p"&gt;    &lt;p&gt;Note that the drive letters presented in the left    pane may be different from those that Windows uses. If you wish to eject    a CD, double click on the CD icon.&lt;/p&gt;    &lt;/li&gt;&lt;/ol&gt;If your image resides on a network attached disk, your network interface will require configuration. Normally this will be automatic. However, if your are having difficult creating a map to a network share, you can use the network settings button to confirm that the network is detected and configured correctly.&lt;br /&gt;&lt;p&gt;&lt;img alt="" src="http://kb.macrium.com/Uploads/Images/LinuxRestore/network.png" /&gt;&lt;/p&gt;&lt;p&gt;Select a network adaptor from the list and view or change the IP addressand network parameters if incorrect.&lt;/p&gt;&lt;p&gt;Note: if there are no adaptors listed, then the Linux rescue disk doeshave support for your network adaptor. In this case, consider a windows PE rescue disk.&lt;/p&gt;&lt;p&gt;The "Set" button applies any configuration changes, and "Get address" attempts to acquires a new address via DHCP. This will have been attempted at boot time, but may need to be invoked manually, for example where a network lead was not connected at boot time.&lt;/p&gt;The Linux CD supports restoration from network attached storage suchas a shared folder on another computer or network attached disk. Networkbrowsing is not implemented, so you need to know the network name or IPaddress of the computer or NAS device that you wish to connect to.&lt;br /&gt;&lt;br /&gt;&lt;img alt="" src="http://kb.macrium.com/Uploads/Images/LinuxRestore/map.png" /&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;Once you have located the image, you can proceed to next page.&lt;/p&gt;&lt;h3&gt;Partition selection&lt;/h3&gt;&lt;p&gt;&lt;img alt="" src="http://kb.macrium.com/Uploads/Images/LinuxRestore/partition.png" /&gt;&lt;/p&gt;&lt;p&gt; &lt;/p&gt;&lt;p&gt;You are now prompted to chose which disk to restore using the drop downlist and then which partitions to restore. By default all partitions includedin the image will be selected.&lt;/p&gt;Image files can contain images of multiple disks, each containing oneor more partitions.&lt;br /&gt;&lt;br /&gt;Note, you can only restore one disk at a time; you can restart the wizard once the restore has completed, should you wish to restore multiple disks.&lt;br /&gt;&lt;br /&gt;Once, you have chosen what you wish to restore, you can proceed to the next page.&lt;br /&gt;&lt;h3&gt;Target disk selection&lt;/h3&gt;You are presented with a list of disks attached to your system, excludingthe one containing the image file. Select the disk you wish to restoreyour image to. If the source image file resides on a locally attached disk, this disk will be omitted from the list. If the selected image is from a disk attached&lt;br /&gt;&lt;br /&gt;Note that any partitions existing on this disk that overlapthe partition(s) you are restoring will be lost.&lt;br /&gt;&lt;img alt="" src="http://kb.macrium.com/Uploads/Images/LinuxRestore/target.png" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;h3&gt;Restore&lt;/h3&gt;&lt;p&gt;You are presented with a summary of the restore operation that you haveconfigured.&lt;/p&gt;&lt;img alt="" src="http://kb.macrium.com/Uploads/Images/LinuxRestore/restore.png" /&gt;&lt;br /&gt;&lt;br /&gt;The verify option, will confirm that the image file has suffered no corruption since it was created. As this reads and confirms every byte in the file, it can take as long as the restore itself. Without this step, if any errors are encountered, you will receive a warning with the option to stop or continue with the restore.&lt;br /&gt;&lt;p&gt;If you are happy to proceed, click &lt;span style="font-weight: bold;"&gt;&lt;strong&gt;R&lt;/strong&gt;&lt;/span&gt;&lt;span style="font-weight: bold;"&gt;&lt;strong&gt;estore&lt;/strong&gt;&lt;/span&gt;.&lt;/p&gt;&lt;p&gt;In the case that you have selected a multi-part image on a differentdisk such as a CD or DVD, you will be prompted to insert the disk containingthe first and then subsequent image files as they are required.&lt;/p&gt;</description><pubDate>Wed, 07 Dec 2011 16:27:55 GMT</pubDate><dc:creator>john.pendleton@macrium.com</dc:creator></item><item><title>v5: How to use Macrium ReDeploy</title><link>http://kb.macrium.com/Goto50126.aspx</link><description>&lt;h3&gt;What is Macrium Redeploy?&lt;/h3&gt;There are a variety of scenarios where you might need to move a windows installation to anew machine. Some examples are listed below:&lt;ul&gt;    &lt;li&gt;    &lt;p&gt;Migrating to a new machine due to hardware failure or planned upgrade such as a new motherboard etc.&lt;/p&gt;    &lt;/li&gt;    &lt;li&gt;    &lt;p&gt;Moving between a physical and a virtual machine (P2V   / V2P  ).&lt;/p&gt;    &lt;/li&gt;    &lt;li&gt;    &lt;p&gt;Changing a non-raid to a raid installation or legacy SATA to AHCI SATA&lt;/p&gt;    &lt;/li&gt;&lt;/ul&gt;&lt;p&gt;There are various aspects of the windows boot processes that will typically causea boot failure after significant changes to the hardware. The purpose of  ReDeploy isto attempt to overcome these issues enabling a Windows installation  to run on new hardware.&lt;/p&gt;&lt;p&gt;The discovery of hardware and association with a matching device drivers is atime consuming process. It must be undertaken when windows is being installed butthen is skipped during a normal windows boot to make the boot delay  acceptable.&lt;/p&gt;&lt;p&gt;Early in the boot process, the boot loader loads the windows kernel (the coreof the operating system) and selected “critical” drivers required to get windowsup and running. If the new hardware configuration requires a new driver to readthe disk containing the operating system then windows will fail to boot.&lt;/p&gt;&lt;p&gt;Once the kernel and the critical drivers are loaded, the kernel is started. Thekernel and its associated HAL need to match the motherboard for best enabling. A driveris optionally loaded to handle specific cpu features. Again, for a stable  system,this driver needs to match the hardware – in this case, the cpu  model.&lt;/p&gt;&lt;p&gt;ReDeploy is designed to detect changes to these critical system features,locate relevant drivers and inject them into your windows operating system toenable it to boot.&lt;/p&gt;&lt;p&gt;You will need to run ReDeploy from the Windows PE Reflect rescue CD. Thisallows the new hardware to be detected and the configuration of the windowssystem modified to enable it to boot.&lt;/p&gt;&lt;p&gt;ReDeploy is designed make the complex process of getting an offline windows operatingsystem running as easy and intuitive as possible. What it will not do  is install thecomplete driver set for the new hardware. You will be able to  complete the driver installationfor devices such as network and graphics  adaptors once your windows installation hasbooted on your new hardware.&lt;br /&gt; &lt;/p&gt;&lt;table cellspacing="0" class="whs20"&gt;    &lt;tbody&gt;        &lt;tr style="vertical-align: top;"&gt;            &lt;td style="vertical-align: middle;" class="whs23"&gt;            &lt;img alt="" style="width: 46px; height: 37px;" src="http://www.macrium.com/webhelp/image3.gif" /&gt;            &lt;/td&gt;            &lt;td class="whs24" style="background-color: #ffff99;"&gt;            &lt;strong&gt;Note:&lt;/strong&gt; Image deployment to multiple PCs requires a            deployment license for each PC deployed. Please see            &lt;a href="http://www.macrium.com/deployment.asp"&gt;&lt;strong&gt;here&lt;/strong&gt;&lt;/a&gt;            for information on purchasing deployment licenses.&lt;br /&gt;            &lt;br /&gt;            If you deploy an image to a different PC then you should make sure your installed            software, including Windows and Macrium Reflect is suitably licensed for the new PC.            &lt;/td&gt;        &lt;/tr&gt;    &lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt; &lt;hr /&gt;&lt;h3&gt;Platform support&lt;/h3&gt;If you need to transfer a Windows Server install to new hardware, you need Reflect v5 Serveredition for ReDeploy. Alternatively, if you have a non-server (workstation) install, then useReDeploy which is included with v5 Professional edition or the Server edition:&lt;br /&gt;  &lt;br /&gt;&lt;table cellspacing="0" cellpadding="0" style="border: 1px solid #000000;"&gt;    &lt;tbody&gt;        &lt;tr&gt;            &lt;td style="border: 1px solid #000000; width: 125px; text-align: left; border-spacing: 0px;"&gt; &lt;/td&gt;            &lt;td style="border: 1px solid #000000; width: 112px; border-spacing: 0px; text-align: center;"&gt;Workstation&lt;/td&gt;            &lt;td style="border: 1px solid #000000; width: 89px; border-spacing: 0px; text-align: center;"&gt;Server&lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td style="border: 1px solid #000000; width: 125px; text-align: left; border-spacing: 0px;"&gt; v5 Professional&lt;br /&gt;            &lt;/td&gt;            &lt;td style="border: 1px solid #000000; width: 112px; border-spacing: 0px; text-align: center;"&gt;x&lt;/td&gt;            &lt;td style="border: 1px solid #000000; width: 89px; border-spacing: 0px; text-align: center;"&gt;             &lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td style="border: 1px solid #000000; width: 125px; text-align: left; border-spacing: 0px;"&gt; v5 Server&lt;br /&gt;            &lt;/td&gt;            &lt;td style="border: 1px solid #000000; width: 112px; border-spacing: 0px; text-align: center;"&gt;x&lt;/td&gt;            &lt;td style="border: 1px solid #000000; width: 89px; border-spacing: 0px; text-align: center;"&gt;x&lt;/td&gt;        &lt;/tr&gt;    &lt;/tbody&gt;&lt;/table&gt;&lt;p&gt;The Standard edition of Macrium Reflect v5 does not contain ReDeploy, neither do any of the 30 day trial editions.&lt;/p&gt;&lt;br /&gt;&lt;hr /&gt;&lt;br /&gt;&lt;h2&gt;Using Macrium ReDeploy&lt;/h2&gt;&lt;br /&gt;&lt;table cellspacing="0" class="whs20"&gt;    &lt;colgroup&gt;&lt;col class="whs21" /&gt; &lt;col class="whs22" /&gt;  &lt;/colgroup&gt;    &lt;tbody&gt;        &lt;tr style="vertical-align: top;"&gt;            &lt;td style="vertical-align: middle;" class="whs23"&gt;            &lt;img alt="" style="width: 36px; height: 37px;" src="http://www.macrium.com/webhelp/image3.gif" /&gt;            &lt;/td&gt;            &lt;td class="whs24" style="background-color: #ffff99;"&gt;            &lt;strong&gt;Note:&lt;/strong&gt; ReDeploy will modify an existing offline operating            system to work with new hardware. You should restore your system image to            the PC being deployed before running ReDeploy. There is no need to reboot your PC after restoring an Image and before you run ReDeploy.            &lt;/td&gt;        &lt;/tr&gt;    &lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;ol&gt;    &lt;li&gt;Boot the target PC with the Windows PE rescue CD or USB equivalent.  (At bottom of this tutorial is a link to a video on creating a Windows PE rescue CD).&lt;br /&gt;      &lt;/li&gt;    &lt;li&gt;Take the &lt;strong&gt;ReDeploy Restored Image to new hardware&lt;/strong&gt; option.&lt;br /&gt;    &lt;img alt="" style="padding-top: 4px; padding-left: 0px; margin-left: 0px;" src="http://kb.macrium.com/KBImages/51/index.png" /&gt;&lt;br /&gt;         &lt;/li&gt;    &lt;li&gt;If you have a multi-boot system, then you will be  presented with a list  of operating    systems, select the operating system to be redeployed. Click on '&lt;strong&gt;Next&lt;/strong&gt;'.&lt;br /&gt;    &lt;img alt="" style="padding-top: 4px; padding-left: 0px; margin-left: 0px;" src="http://www.macrium.com/KB/Uploads/Images/ReDeployMulti.jpg" /&gt;    &lt;br /&gt;         &lt;/li&gt;    &lt;li style="padding-bottom: 4px;"&gt;    The following dialog will ask you    to specify driver locations for your    mass storage devices (such as RAID card). If you haven't already done so, please insert    a driver disk for the hardware you are going to boot from. This will typically be the    motherboard or RAID card driver CD, click on &lt;em&gt;&lt;strong&gt;Add&lt;/strong&gt;&lt;/em&gt; to add driver locations. You can also specify additional    paths such as network folders, click on '&lt;em&gt;&lt;strong&gt;Map Drive&lt;/strong&gt;&lt;/em&gt;' to add a network share. Then Click on&lt;strong&gt; 'Next'&lt;/strong&gt;&lt;br /&gt;    &lt;img alt="" style="padding-top: 4px; padding-left: 0px; margin-left: 0px; padding-bottom: 6px;" src="http://www.macrium.com/KB/Uploads/Images/ReDeployDrvLoc.jpg" /&gt;    &lt;div style="background-color: #ffff99;"&gt;&lt;strong&gt;Note:&lt;/strong&gt; ReDeploy will first    search through any user  specified driver    locations. If none are specified or no matching drivers are found then removable    devices such  as CD's and floppy drives  are searched. ReDeploy will also search    through Windows' database of  drivers. &lt;/div&gt;    &lt;br /&gt;         &lt;/li&gt;    &lt;li&gt;ReDeploy will now seek drivers for all discovered mass storage devices and a list will be    displayed with details to the right. Click &lt;strong&gt;'Next'&lt;/strong&gt;    &lt;br /&gt;    &lt;img alt="" style="padding-top: 4px; padding-left: 0px; margin-left: 0px;" src="http://www.macrium.com/KB/Uploads/Images/ReDeploySrch.jpg" /&gt;&lt;br /&gt;    &lt;p&gt;ReDeploy will now seek drivers for all discovered mass storage devices and a list will    be displayed with details to the right.    &lt;/p&gt;    &lt;p&gt;For each mass storage device, there are three possibilities:&lt;/p&gt;    &lt;ul style="list-style-type: disc;"&gt;        &lt;li&gt; The driver is already installed. It might still need to be enabled at boot –  this        will be done automatically. &lt;/li&gt;        &lt;li&gt;The driver has been located, either from a CD, user specified path or from the        Windows database. This driver will be        installed on completion of  ReDeploy.&lt;/li&gt;        &lt;li&gt;No matching driver has been located. &lt;/li&gt;    &lt;/ul&gt;    &lt;br /&gt;    If no driver has been located or you wish to override the displayed driver,  then    the 'locate driver' button can be used to manually specify an .inf  file.&lt;br /&gt;    &lt;br /&gt;    &lt;div style="background-color: #ffff99;"&gt;&lt;strong&gt;Note:&lt;/strong&gt; If you have multiple mass storage interfaces in your    system, then you only need to locate drivers for the hardware that contains the windows    system and active partitions.&lt;/div&gt;    &lt;br /&gt;         &lt;/li&gt;    &lt;li&gt;The options on the next dialog maybe left at the defaulted values. If you have  trouble    booting then these options can help resolve issues. Click    &lt;strong&gt;Next&lt;/strong&gt;.  For more    information about the options please see below:    &lt;br /&gt;    &lt;img alt="" style="padding-top: 4px; padding-left: 0px; margin-left: 0px;" src="http://www.macrium.com/KB/Uploads/Images/ReDeployOpt.jpg" /&gt;&lt;br /&gt;    &lt;br /&gt;    &lt;ol style="list-style-type: lower-alpha; padding-bottom: 16px;"&gt;        &lt;li&gt;&lt;strong&gt;Disable reboot on system stop&lt;/strong&gt;&lt;br /&gt;        Set this option to stop automatic rebooting if a BSOD occurs while Windows is loading        or running. If this option is not set and Windows generates a BSOD, there will be        no time to note the BSOD error codes.        &lt;/li&gt;        &lt;li&gt;&lt;strong&gt;Display boot drivers as they load&lt;br /&gt;        &lt;/strong&gt;Set this option to show which drivers are being loaded as Windows loads.        Once  Windows is loading and running without issue this option can be reverted using        the Windows MSCONFIG utility. You can use the Pause/Break key to freeze the list        as it scrolls past, use space to un-pause.        &lt;/li&gt;        &lt;li&gt;&lt;strong&gt;Enable boot logging&lt;br /&gt;        &lt;/strong&gt;Set this option to enable logging of drivers being loaded by Windows as it        loads. The resulting log file 'ntblog.txt' can be found in the windows folder.  Once        Windows is loading and running without issue this option can be reverted  using        the Windows MSCONFIG utility.        &lt;/li&gt;        &lt;li&gt;&lt;strong&gt;Disable CPU Driver&lt;/strong&gt;&lt;br /&gt;        Set this option to disable CPU drivers. This may be  useful if you see BSOD's in        the selected Hardware Abstraction Layer drivers or system lockup on entering        standby or shutdown.        &lt;/li&gt;        &lt;li&gt;&lt;strong&gt;&lt;/strong&gt;&lt;strong&gt;Set Hardware Abstraction Layer&lt;br /&gt;        &lt;/strong&gt;Set this option to choose which Hardware Abstraction Layer is to be        used in the selected Windows operating system. The recommended HAL for this machine        will be the one initially selected. If you have the incorrect HAL configured, your        Windows installation will typically be  unstable and you will often see random BSOD's        or lock ups after Windows has booted. In particular, if you are redeploying from        or to Virtual Box with APIC unchecked (the default) or very old physical hardware,        the  you will need to set a new HAL.        &lt;/li&gt;        &lt;li&gt;&lt;strong&gt;Allow Windows to detect Hardware Abstraction Layer&lt;/strong&gt; &lt;br /&gt;        Set this option to allow Windows to determine the best Hardware Abstraction Layer        to use at boot time. For Vista, use this in preference to the “Set Hardware Abstraction        Layer” option. This is a Vista and later only option.        &lt;/li&gt;        &lt;li&gt;&lt;strong&gt;Enable SATA AHCI&lt;/strong&gt;&lt;br /&gt;        Set this option to enable support for generic SATA AHCI hardware. You will typically        also need to enable an option in your BIOS for your mass storage hardware to operate        in this mode. This is a  Vista and later only option.        &lt;/li&gt;    &lt;/ol&gt;    &lt;/li&gt;    &lt;li&gt;You will be presented with a list of actions that will be performed and clicking    &lt;em&gt;&lt;strong&gt;    Finish&lt;/strong&gt;&lt;/em&gt; will    apply these options to the target operating system. A log file 'ReDeploy.log'    will be saved to the drive containing the operating system redeployed.&lt;br /&gt;    &lt;img alt="" style="padding-top: 4px; padding-left: 0px; margin-left: 0px; padding-bottom: 3px;" src="http://www.macrium.com/KB/Uploads/Images/ReDeployConf.jpg" /&gt;&lt;br /&gt;    &lt;br /&gt;    After clicking &lt;strong&gt;'Finish'&lt;/strong&gt; to inject drivers and apply your settings you get a confirmation dialog, and you can reboot    your OS which should now be compatible with your new hardware! &lt;/li&gt;&lt;/ol&gt;&lt;p&gt;  &lt;/p&gt;&lt;div style="background-color: #ffff99;"&gt;&lt;strong&gt;Note:&lt;/strong&gt; Make sure there is a tick in the checkbox against &lt;strong&gt;'&lt;/strong&gt;&lt;strong&gt;Check for unsupported devices eachtime the rescue media loads&lt;/strong&gt;' before you burn the Windows PE rescue CD, this will enable you to add additional drivers when you boot on new hardware.&lt;/div&gt;&lt;p&gt;&lt;/p&gt;&lt;hr /&gt;&lt;div style="text-align: right;"&gt;&lt;strong&gt;Search Terms&lt;/strong&gt;&lt;br /&gt;How do I use ReDeploy&lt;br /&gt;Can I restore an image to a different PC&lt;br /&gt;Moving Windows to different hardware&lt;br /&gt;&lt;hr /&gt;&lt;/div&gt;</description><pubDate>Tue, 15 Nov 2011 18:05:18 GMT</pubDate><dc:creator>evan.tringham@macrium.com</dc:creator></item><item><title>v5: Using VBScript to delete Differential Backups</title><link>http://kb.macrium.com/Goto50124.aspx</link><description>&lt;p&gt;This article shows you how to use VBScript to delete differential Images in a backup set.  This enablesyou to retain a specified number of recent differential Images, this tutorial also applies to differential file and folder backups.&lt;/p&gt;&lt;hr /&gt;&lt;p&gt;In the following example we will generate a VBScript source file that creates a differential backup (Image or file and folder)and then delete differentials in the same set retaining the '4' most recent differential images.&lt;/p&gt;&lt;h3&gt;&lt;strong&gt;&lt;span style="color: #ff0000;"&gt;***&lt;/span&gt; Note&lt;/strong&gt;: You should only run this script on &lt;strong&gt;*differential* &lt;/strong&gt;backupsets &lt;span style="color: #ff0000;"&gt;***&lt;/span&gt;.&lt;/h3&gt;&lt;br /&gt;&lt;h4&gt;1.  &lt;span style="text-decoration: underline;"&gt;Generate VBScript file&lt;/span&gt;&lt;/h4&gt;&lt;blockquote style="margin-top: 3px;"&gt;Select '&lt;strong&gt;Backup Definition Files&lt;/strong&gt;' tab, then&lt;strong&gt; &lt;em&gt;Right click&lt;/em&gt;&lt;/strong&gt; on your &lt;em&gt;&lt;strong&gt;Backup Definition File&lt;/strong&gt;&lt;/em&gt;,and select &lt;strong&gt;&lt;em&gt;'Generate a VBScript File'&lt;/em&gt;&lt;/strong&gt;.&lt;br /&gt;&lt;img alt="" src="http://kb.macrium.com/Uploads/Images/gen_vbscript.jpg" style="padding-top: 4px; padding-bottom: 2px;" /&gt;&lt;/blockquote&gt;&lt;h4&gt;2.  &lt;span style="text-decoration: underline;"&gt;VBScript Defaults&lt;/span&gt;&lt;/h4&gt;&lt;blockquote style="margin-top: 3px;"&gt;In the next dialog accept the defaults and click on &lt;strong&gt;'OK'&lt;/strong&gt;, although you can make the &lt;strong&gt;&lt;em&gt;File Name&lt;/em&gt;&lt;/strong&gt; more descriptive of the drives/folders being backed up if needed.&lt;br /&gt;&lt;img alt="" src="http://kb.macrium.com/Uploads/Images/vbscriptdefaults.jpg" style="padding-top: 4px; padding-bottom: 2px;" /&gt;&lt;/blockquote&gt;&lt;h4&gt;3. &lt;span style="text-decoration: underline;"&gt;Prepare to edit VBScript in Notepad&lt;/span&gt;&lt;/h4&gt;&lt;blockquote style="margin-top: 3px;"&gt;Select the &lt;strong&gt;&lt;em&gt;VBScript&lt;/em&gt;&lt;/strong&gt; tab, right click on the new &lt;strong&gt;VBScript&lt;/strong&gt;list entry and select &lt;strong&gt;&lt;em&gt;'Edit'&lt;/em&gt;&lt;/strong&gt;. Notepad will open.&lt;br /&gt;&lt;img alt="" src="http://kb.macrium.com/Uploads/Images/vbscriptfile.jpg" style="padding-top: 4px; padding-bottom: 2px;" /&gt;&lt;/blockquote&gt;&lt;h4&gt;4.  &lt;strong&gt;&lt;span style="text-decoration: underline;"&gt;Edit the File in Notepad&lt;/span&gt; &lt;/strong&gt;&lt;/h4&gt;&lt;blockquote style="margin-top: 3px;"&gt;It is strongly suggested you &lt;span style="text-decoration: underline;"&gt;&lt;strong&gt;do not&lt;/strong&gt;&lt;/span&gt; select &lt;strong&gt;&lt;em&gt;Word Wrap &lt;/em&gt;&lt;/strong&gt;inNotepad, it is easier to edit without selecting Word Wrap&lt;br /&gt;&lt;img alt="" src="http://kb.macrium.com/Uploads/Images/notepadwordwrap.jpg" style="padding-top: 4px; padding-bottom: 2px;" /&gt;&lt;br /&gt;&lt;br /&gt;All the following code in&lt;span style="font-weight: bold; font-family: 'courier new'; color: green;"&gt;Green&lt;/span&gt; willneed to be copied to Notepad as per the instructions given:&lt;br /&gt;&lt;br /&gt;After the line:&lt;br /&gt;&lt;span style="font-weight: bold; font-family: 'courier new'; color: #660033;"&gt;ExitCode = Backup ("""C:\Program Files\Macrium\Reflect\Reflect.exe"" -e -w &amp;lt;BACKUP_TYPE&amp;gt; ""PATH TO XML file""")&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Copy and paste the following code:&lt;br /&gt;&lt;/blockquote&gt;&lt;blockquote&gt;&lt;iframe src="http://kb.macrium.com/uploads/Differential_text1B.html" style="border: thin solid #000000; width: 100%; height: 70px;" name="Iframe1"&gt;&lt;/iframe&gt;&lt;br /&gt;&lt;/blockquote&gt;&lt;blockquote&gt;&lt;strong&gt;Note: &lt;/strong&gt;The number '&lt;strong&gt;4&lt;/strong&gt;' above is the number of recent differential files you want to keep in the backup set,you can change this number&lt;br /&gt;&lt;br /&gt;Example of Paste as indicated in following dialog:&lt;br /&gt;&lt;img alt="" src="http://kb.macrium.com/Uploads/Images/notepad1.jpg" style="padding-top: 4px; padding-bottom: 2px;" /&gt;&lt;br /&gt;&lt;br /&gt;At the very &lt;strong&gt;*end*&lt;/strong&gt; of the file in notepad &lt;strong&gt;copy and paste the following code:&lt;/strong&gt;&lt;br /&gt;&lt;/blockquote&gt;&lt;blockquote&gt;&lt;iframe style="border: thin solid #000000; width: 100%; height: 1150px;" src="http://kb.macrium.com/uploads/Differential_text2B.html" name="Iframe2"&gt;&lt;/iframe&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;strong&gt;5. &lt;span style="text-decoration: underline;"&gt;Save and review VBScript&lt;/span&gt;&lt;/strong&gt;&lt;blockquote&gt;Save the file in notepad:&lt;strong&gt; File &amp;gt; Save&lt;/strong&gt; and close notepad.  &lt;br /&gt;&lt;br /&gt;You can run VBScript files just like XML filesand you can schedule the VBScript file to run by right clicking on the VBScript file:  Select '&lt;em&gt;&lt;strong&gt;Run Now&lt;/strong&gt;&lt;/em&gt;' or '&lt;em&gt;&lt;strong&gt;Schedule&lt;/strong&gt;&lt;/em&gt;' (more detail in step 6 if needed).  If you have previously scheduled XML files running the Differential, this XML scheduling can now be deleted if it is to be replaced by the scheduled VBScript file; make sure you only delete an XML file under the &lt;em&gt;&lt;strong&gt;Scheduled Backups&lt;/strong&gt;&lt;/em&gt; tab and &lt;strong&gt;not&lt;/strong&gt; under the &lt;em&gt;&lt;strong&gt;Backup Definition Files&lt;/strong&gt;&lt;/em&gt; tab.&lt;br /&gt;&lt;br /&gt;&lt;/blockquote&gt;&lt;hr style="height: 4px; background-color: #000000;" /&gt;&lt;br /&gt;&lt;h3&gt;6.  &lt;span style="text-decoration: underline;"&gt;How to run VBScript files on an 'ad hoc' basis and when Scheduled&lt;/span&gt;&lt;/h3&gt;&lt;p&gt;If you want to run backups while retaining a limited number of Differentials you must nowrun the VBScript and not XML definition files.  The following two examples aim to get you started with this.&lt;/p&gt;&lt;h4&gt;6a.  To run a single ('ad hoc') Differential backup: &lt;/h4&gt;&lt;blockquote&gt;Select the '&lt;em&gt;&lt;strong&gt;VBScript Files&lt;/strong&gt;&lt;/em&gt;' tab and right click the &lt;em&gt;&lt;strong&gt;VBScript file name&lt;/strong&gt;&lt;/em&gt;, you wish to run, and fromthe '&lt;em&gt;&lt;strong&gt;Run Now&lt;/strong&gt;&lt;/em&gt;' option select &lt;strong&gt;Differential&lt;/strong&gt;. The Differential backup should now run:&lt;br /&gt;&lt;img alt="" style="padding-top: 4px; padding-bottom: 2px;" src="http://kb.macrium.com/Uploads/Images/rundifferential.jpg" /&gt;&lt;br /&gt;   &lt;/blockquote&gt;&lt;h4&gt; 6b. To Schedule a VBScript file to run daily, weekly or monthly at a day and time you choose:&lt;/h4&gt;&lt;ol style="list-style-type: lower-roman;"&gt;    &lt;li&gt;Select the '&lt;em&gt;&lt;strong&gt;VBScript Files&lt;/strong&gt;&lt;/em&gt;' tab and right click the &lt;em&gt;&lt;strong&gt;VBScript file name&lt;/strong&gt;&lt;/em&gt;, you wish to schedule, and select '&lt;strong&gt;Schedule&lt;/strong&gt;'&lt;br /&gt;    &lt;img alt="" style="padding-top: 4px; padding-bottom: 4px; padding-left: 0px; margin-left: 0px;" src="http://kb.macrium.com/Uploads/Images/scheduledifferential.jpg" /&gt;    &lt;br /&gt;           &lt;/li&gt;    &lt;li&gt;In the next dialog seen, make sure you &lt;strong&gt;only&lt;/strong&gt; select &lt;strong&gt;Differential&lt;/strong&gt; for your VBScript backup.    The password which you may need to enter is your normal Windows &lt;em&gt;&lt;strong&gt;login in&lt;/strong&gt;&lt;/em&gt;    password, the 'Task Name' should be a description of the partitions being backed    up.  Then click on '&lt;em&gt;&lt;strong&gt;Next&lt;/strong&gt;&lt;/em&gt;'.&lt;br /&gt;    &lt;img alt="" style="padding-top: 4px; padding-bottom: 4px; padding-left: 0px; margin-left: 0px;" src="http://kb.macrium.com/Uploads/Images/schedulediff1.jpg" /&gt;    &lt;br /&gt;           &lt;/li&gt;    &lt;li&gt;The next dialog asks when you would like the backup to be scheduled: daily,    weekly, monthly etc. to select which days the differentials should run select '&lt;strong&gt;Weekly&lt;/strong&gt;'. Click &lt;strong&gt;&lt;em&gt;'Next'&lt;/em&gt;&lt;/strong&gt;.&lt;br /&gt;    &lt;img alt="" src="http://kb.macrium.com/Uploads/Images/scheduleweekly.jpg" style="padding-top: 4px; padding-bottom: 2px; padding-left: 0px; margin-left: 0px;" /&gt;    &lt;br /&gt;           &lt;/li&gt;    &lt;li&gt;To set the controls to ensure that the backup is run every week at 1800    hours set 'Every 1 week'  and 18:00. In    this demonstration it runs 6 days a week, the checkbox at the botton entitled '&lt;em&gt;If missed then run at start-up&lt;/em&gt;' was    also selected.    The Start date will be the current date unless you change it. Click '&lt;em&gt;&lt;strong&gt;Next&lt;/strong&gt;&lt;/em&gt;'.&lt;br /&gt;    &lt;img alt="" src="http://kb.macrium.com/Uploads/Images/schedule-figure5B.jpg" style="padding-top: 4px; padding-bottom: 2px; padding-left: 0px; margin-left: 0px;" /&gt;    &lt;br /&gt;           &lt;/li&gt;    &lt;li&gt;A summary of the details is shown. Click '&lt;em&gt;&lt;strong&gt;Finish&lt;/strong&gt;&lt;/em&gt;'&lt;br /&gt;    &lt;img alt="" src="http://kb.macrium.com/Uploads/Images/Schedule_cd.jpg" style="padding-top: 4px; padding-bottom: 2px; padding-left: 0px; margin-left: 0px;" /&gt;    &lt;br /&gt;           &lt;/li&gt;&lt;/ol&gt;&lt;p&gt;You will note that the details of this task have been addedto the main pain of the application under the 'Scheduled Backups' tab.&lt;br /&gt;   &lt;/p&gt;&lt;h3&gt;&lt;strong&gt;&lt;span style="color: #ff0000;"&gt;***&lt;/span&gt; Remember&lt;/strong&gt;: You should only run this script on &lt;strong&gt;*differential* &lt;/strong&gt;backups&lt;span style="color: #ff0000;"&gt;***&lt;/span&gt;.&lt;/h3&gt;&lt;p&gt;&lt;/p&gt;&lt;hr /&gt;&lt;p&gt;&lt;/p&gt;&lt;div style="text-align: right;"&gt;&lt;strong&gt;Search Terms&lt;/strong&gt;&lt;br /&gt;How do I delete differential images&lt;br /&gt;Keep recent differentials &lt;/div&gt;&lt;p&gt;&lt;/p&gt;</description><pubDate>Fri, 11 Nov 2011 22:21:14 GMT</pubDate><dc:creator>evan.tringham@macrium.com</dc:creator></item><item><title>v5:  Imaging disks with bad sectors</title><link>http://kb.macrium.com/Goto50121.aspx</link><description>&lt;p&gt;This article explains how to image and recover a disk that has developed bad sectors. A disk that has bad sectors is permanently damaged and, if the bad sectors were in use by the file system, it is very likely that the data contained in the damaged area is unrecoverable.&lt;/p&gt;&lt;p&gt;This may be a sign that your hard drive is coming to the end of its life, though, it is still possible to manage the situation and create an Image whichcan be restored or used to mount and copy files and folders.  &lt;/p&gt;&lt;p&gt;For more information on bad sectors please see this Wikipedia article &lt;a href="http://en.wikipedia.org/wiki/Bad_sector" class="ApplyClass"&gt;http://en.wikipedia.org/wiki/Bad_sector&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;hr /&gt;&lt;p&gt;&lt;/p&gt;&lt;h3&gt;Detecting bad sectors&lt;/h3&gt;&lt;blockquote&gt;&lt;p&gt;If a bad sector is encountered during image creation then you will receive the following error in your backup log:&lt;/p&gt;&lt;p&gt;&lt;span style="color: #ff0000;"&gt;&lt;strong&gt;&lt;span id="BugEvents"&gt;Backup aborted! Unable to read from disk - Error Code 23 - Data error (cyclic redundancy check)&lt;/span&gt;&lt;br /&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Note&lt;/strong&gt;: This is considered a fatal condition because your data cannot be read and the image will abort. &lt;/p&gt;The first step should be to run 'chkdsk' on the problem drive to reallocate file system clusters to undamaged disk sectors. &lt;br /&gt;&lt;/blockquote&gt;&lt;h3&gt;&lt;hr /&gt;Run chkdsk so bad sectors are not within the file system&lt;/h3&gt;&lt;blockquote&gt;Run '&lt;strong&gt;chkdsk c: /r&lt;/strong&gt;' from a command prompt. Replace 'c:' with the appropriate drive letter.&lt;strong&gt;&lt;br /&gt;&lt;/strong&gt;&lt;blockquote&gt;&lt;strong&gt;&lt;blockquote&gt;&lt;/blockquote&gt;&lt;p&gt;&lt;img alt="" style="width: 542px; height: 166px;" src="http://kb.macrium.com/Uploads/Images/chkdsk.jpg" /&gt;&lt;/p&gt;&lt;blockquote&gt;&lt;/blockquote&gt;Note:&lt;/strong&gt; The '/r' switch is important and will cause the entire file system to be checked for bad sectors. This will require a reboot to complete and may take some time.&lt;br /&gt;&lt;br /&gt;To open a command prompt &lt;strong&gt;click 'Start' &amp;gt; 'All Programs' &amp;gt; 'Accessories'&lt;/strong&gt; and &lt;strong&gt;select 'Command Prompt'&lt;/strong&gt;.  In Vista/7 &lt;strong&gt;right click&lt;/strong&gt; and &lt;strong&gt;select 'Run as Administrator&lt;/strong&gt;'.  &lt;br /&gt;&lt;/blockquote&gt;&lt;blockquote&gt;&lt;p&gt;&lt;strong&gt;Enter 'Y' &lt;/strong&gt;if you receive the 'schedule this volume..' message.&lt;/p&gt;&lt;/blockquote&gt;&lt;p&gt;The above will map out any bad sectors in use by the file system.  After doing this immediately create an Image of your drive. This will ensure that all file system clusters are located on good sectors.  It's important to realize that you have already lost data if clusters are relocated, as the data contained in them is unrecoverable. You should consider replacing your disk.  &lt;/p&gt;&lt;p&gt;&lt;strong&gt;Note: &lt;/strong&gt;If you still receive 'Error Code 23' in your log after running chkdsk then run chkdsk repeatedly until an image can be created without error.&lt;/p&gt;&lt;p&gt;A list of bad clusters is stored in the file system and is copied when you create an Image and when you restore the Image. After restoring an Image to a new disk, if you are running Windows Vista or Windows 7, then run '&lt;strong&gt;chkdsk c: /b&lt;/strong&gt;'which will re-evaluate all the bad clusters restored on your drive andremove non-faulty clusters from the list. If you are running Windows XPthen if you boot into the Windows PE rescue CD you can run the samecommand from there.  &lt;strong&gt;/b&lt;/strong&gt; only works with NTFS volumes.&lt;/p&gt;&lt;/blockquote&gt;&lt;hr /&gt;&lt;h3&gt;  Force Macrium Reflect to ignore bad sectors &lt;/h3&gt;&lt;blockquote&gt;&lt;p&gt;If you are unable to successfully reallocate file system clusters by running chkdsk then you can force Macrium Reflect to continue on Error 23. &lt;/p&gt;&lt;p&gt;&lt;strong&gt;Take the 'Other tasks' &amp;gt; 'Edit defaults' &amp;gt; 'Advanced' &lt;/strong&gt;option and &lt;strong&gt;select  'Ignore bad sectors', click 'OK'&lt;/strong&gt;. Images will now complete: &lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://kb.macrium.com/Uploads/Images/Reflect_defaults.jpg" /&gt;&lt;/p&gt;&lt;p&gt;  &lt;/p&gt;&lt;p&gt;&lt;strong&gt;Note:&lt;/strong&gt; The bad sectors will be reported in the Image log, e.g:&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;&lt;span style="color: #ff0000;"&gt;Read Error:     Bad sector found in cluster 2353222&lt;/span&gt;&lt;br /&gt;&lt;span style="color: #ff0000;"&gt;Read Error:     Bad sector found in cluster 2353223 &lt;/span&gt;&lt;br /&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;hr /&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;</description><pubDate>Thu, 27 Oct 2011 12:29:26 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>VSS Errors - Summary</title><link>http://kb.macrium.com/Goto50119.aspx</link><description>&lt;p&gt;Macrium Reflect uses the Windows Volume Shadow Services (VSS) to take snapshots of the file system prior to taking images and backing up files. As a result of this, Macrium Reflect is not supported on Windows operating systems &lt;strong&gt;prior&lt;/strong&gt; to Windows XP SP1 and Server 2003 since they do not incorporate this service. &lt;/p&gt;&lt;p&gt;Use the table below to see possible solutions to common VSS errors: &lt;br&gt;&lt;/br&gt;&lt;br&gt;&lt;/br&gt;&lt;/p&gt;&lt;table style="width: 90%;" cellspacing="5"&gt;    &lt;thead&gt;    &lt;/thead&gt;    &lt;tbody&gt;        &lt;tr&gt;            &lt;td align="center" style="background-color: rgb(31, 73, 125);"&gt;            &lt;p&gt;&lt;strong&gt;&lt;span style="color: rgb(255, 255, 255);"&gt;VSS Error&lt;/span&gt;&lt;/strong&gt;&lt;strong&gt;            &lt;/strong&gt;&lt;/p&gt;            &lt;/td&gt;            &lt;td style="background-color: rgb(31, 73, 125);"&gt;            &lt;div style="text-align: center;"&gt;&lt;strong&gt;&lt;span style="color: rgb(255, 255, 255);"&gt;Description &lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;            &lt;strong&gt;            &lt;/strong&gt;&lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td&gt;            &lt;p&gt;&lt;strong&gt;&lt;span id="ctl00_ctlContentPlaceHolder_ctl00_ctl00_ctlPanelBar_lblArticleTitle" style="font-family: courier new;"&gt;0x8000fff&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;            &lt;/td&gt;            &lt;td&gt;            &lt;p&gt;&lt;span id="ctl00_ctlContentPlaceHolder_ctl00_ctl00_ctlPanelBar_lblArticleTitle"&gt;&lt;a href="http://kb.macrium.com/KnowledgebaseArticle50028.aspx"&gt;Backup aborted! - Failed To Create Volume Snapshot&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;            &lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td&gt;            &lt;p&gt;&lt;strong&gt;&lt;span style="font-family: courier new;"&gt;0x80042306&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;            &lt;/td&gt;            &lt;td&gt;            &lt;p&gt;&lt;a href="http://kb.macrium.com/KnowledgebaseArticle50029.aspx"&gt;Volume Shadow Copy Error&lt;/a&gt;&lt;/p&gt;            &lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td&gt;            &lt;p&gt;&lt;strong&gt;&lt;span style="font-family: courier new;"&gt;0x8004230f&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;            &lt;/td&gt;            &lt;td&gt;            &lt;p&gt;&lt;a href="http://kb.macrium.com/KnowledgebaseArticle50031.aspx"&gt;Backup aborted! - Failed To Create Volume Snapshot&lt;/a&gt;&lt;/p&gt;            &lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td&gt;            &lt;p&gt;&lt;strong&gt;&lt;span style="font-family: courier new;"&gt;0x80042318&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;            &lt;/td&gt;            &lt;td&gt;            &lt;p&gt;&lt;a href="http://kb.macrium.com/KnowledgebaseArticle50040.aspx"&gt;Failed to Create Volume Snapshot&lt;/a&gt;&lt;/p&gt;            &lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td&gt;            &lt;p&gt;&lt;strong&gt;&lt;span style="font-family: courier new;"&gt;0x8004231f&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;            &lt;/td&gt;            &lt;td&gt;            &lt;p&gt;&lt;a href="http://kb.macrium.com/KnowledgebaseArticle50043.aspx"&gt;Failed to Create Volume Snapshot&lt;/a&gt;&lt;/p&gt;            &lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td&gt;            &lt;p&gt;&lt;strong&gt;&lt;span style="font-family: courier new;"&gt;0x80042301&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;            &lt;/td&gt;            &lt;td&gt;            &lt;p&gt;&lt;a href="http://kb.macrium.com/KnowledgebaseArticle50115.aspx"&gt;Failed to Create Volume snapshot&lt;/a&gt;&lt;/p&gt;            &lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td&gt;            &lt;p&gt;&lt;strong&gt;&lt;span style="font-family: courier new;"&gt;0x80042317&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;            &lt;/td&gt;            &lt;td&gt;            &lt;p&gt;&lt;a href="http://kb.macrium.com/KnowledgebaseArticle50117.aspx"&gt;Failed to Create Volume Snapshot&lt;/a&gt;&lt;/p&gt;            &lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td valign="top"&gt;            &lt;p&gt;&lt;strong&gt;&lt;span style="font-family: courier new;"&gt;0x80000ffff&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;            &lt;/td&gt;            &lt;td valign="top"&gt;            &lt;p&gt;&lt;a href="http://kb.macrium.com/KnowledgebaseArticle50104.aspx"&gt;Event log writer in failed state&lt;/a&gt;&lt;/p&gt;            &lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td valign="top"&gt;            &lt;p&gt;&lt;strong&gt;&lt;span style="font-family: courier new;"&gt;0x800423f3&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;            &lt;/td&gt;            &lt;td valign="top"&gt;            &lt;p&gt;&lt;a href="http://kb.macrium.com/KnowledgebaseArticle50091.aspx"&gt;Selected writer 'WMI Writer' is in failed state!&lt;/a&gt;&lt;/p&gt;            &lt;/td&gt;        &lt;/tr&gt;    &lt;/tbody&gt;&lt;/table&gt;&lt;br&gt;&lt;/br&gt;&lt;br&gt;&lt;/br&gt;</description><pubDate>Thu, 20 Oct 2011 09:11:13 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>Macrium Reflect Feature Comparison Chart</title><link>http://kb.macrium.com/Goto50118.aspx</link><description>&lt;h2&gt;Macrium Reflect Feature Comparison &lt;/h2&gt;&lt;span style="color: black;"&gt;&lt;table align="left" width="750px" cellspacing="5" cellpadding="3" frame="box"&gt;    &lt;tbody&gt;        &lt;tr bgcolor="0F4C70"&gt;            &lt;th align="left" width="300px"&gt;&lt;span style="color: white;"&gt;Feature&lt;/span&gt;            &lt;/th&gt;            &lt;th width="150px"&gt;&lt;span style="color: white;"&gt;Standard&lt;/span&gt;            &lt;/th&gt;            &lt;th width="150px"&gt;&lt;span style="color: white;"&gt;Pro&lt;/span&gt;            &lt;/th&gt;            &lt;th width="150px"&gt;&lt;span style="color: white;"&gt;Server&lt;/span&gt;            &lt;/th&gt;        &lt;/tr&gt;        &lt;tr bgcolor="#dddddd"&gt;            &lt;td align="left"&gt;Disk Imaging&lt;/td&gt;            &lt;td align="center"&gt;&lt;img alt="" width="15" height="15" src="http://kb.macrium.com/Uploads/Images/yes.gif" /&gt;&lt;/td&gt;            &lt;td align="center"&gt;&lt;img alt="" width="15" height="15" src="http://kb.macrium.com/Uploads/Images/yes.gif" /&gt;&lt;/td&gt;            &lt;td align="center"&gt;&lt;img alt="" width="15" height="15" src="http://kb.macrium.com/Uploads/Images/yes.gif" /&gt;&lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td align="left"&gt;Disk Cloning&lt;/td&gt;            &lt;td align="center"&gt;&lt;img alt="" width="15" height="15" src="http://kb.macrium.com/Uploads/Images/yes.gif" /&gt;&lt;/td&gt;            &lt;td align="center"&gt;&lt;img alt="" width="15" height="15" src="http://kb.macrium.com/Uploads/Images/yes.gif" /&gt;&lt;/td&gt;            &lt;td align="center"&gt;&lt;img alt="" width="15" height="15" src="http://kb.macrium.com/Uploads/Images/yes.gif" /&gt;&lt;/td&gt;        &lt;/tr&gt;        &lt;tr bgcolor="#dddddd"&gt;            &lt;td align="left"&gt;Access images in Windows Explorer&lt;/td&gt;            &lt;td align="center"&gt;&lt;img alt="" width="15" height="15" src="http://kb.macrium.com/Uploads/Images/yes.gif" /&gt;&lt;/td&gt;            &lt;td align="center"&gt;&lt;img alt="" width="15" height="15" src="http://kb.macrium.com/Uploads/Images/yes.gif" /&gt;&lt;/td&gt;            &lt;td align="center"&gt;&lt;img alt="" width="15" height="15" src="http://kb.macrium.com/Uploads/Images/yes.gif" /&gt;&lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td align="left"&gt;Schedule backups&lt;/td&gt;            &lt;td align="center"&gt;&lt;img alt="" width="15" height="15" src="http://kb.macrium.com/Uploads/Images/yes.gif" /&gt;&lt;/td&gt;            &lt;td align="center"&gt;&lt;img alt="" width="15" height="15" src="http://kb.macrium.com/Uploads/Images/yes.gif" /&gt;&lt;/td&gt;            &lt;td align="center"&gt;&lt;img alt="" width="15" height="15" src="http://kb.macrium.com/Uploads/Images/yes.gif" /&gt;&lt;/td&gt;        &lt;/tr&gt;        &lt;tr bgcolor="#dddddd"&gt;            &lt;td align="left"&gt;Linux Rescue CD&lt;/td&gt;            &lt;td align="center"&gt;&lt;img alt="" width="15" height="15" src="http://kb.macrium.com/Uploads/Images/yes.gif" /&gt;&lt;/td&gt;            &lt;td align="center"&gt;&lt;img alt="" width="15" height="15" src="http://kb.macrium.com/Uploads/Images/yes.gif" /&gt;&lt;/td&gt;            &lt;td align="center"&gt;&lt;img alt="" width="15" height="15" src="http://kb.macrium.com/Uploads/Images/yes.gif" /&gt;&lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td align="left"&gt;Windows PE 3 Rescue Media (RAID support)&lt;/td&gt;            &lt;td align="center"&gt;&lt;img alt="" width="15" height="15" src="http://kb.macrium.com/Uploads/Images/yes.gif" /&gt;&lt;/td&gt;            &lt;td align="center"&gt;&lt;img alt="" width="15" height="15" src="http://kb.macrium.com/Uploads/Images/yes.gif" /&gt;&lt;/td&gt;            &lt;td align="center"&gt;&lt;img alt="" width="15" height="15" src="http://kb.macrium.com/Uploads/Images/yes.gif" /&gt;&lt;/td&gt;        &lt;/tr&gt;        &lt;tr bgcolor="#dddddd"&gt;            &lt;td align="left"&gt;XP / Vista / 7 and WHS compatibility&lt;/td&gt;            &lt;td align="center"&gt;&lt;img alt="" width="15" height="15" src="http://kb.macrium.com/Uploads/Images/yes.gif" /&gt;&lt;/td&gt;            &lt;td align="center"&gt;&lt;img alt="" width="15" height="15" src="http://kb.macrium.com/Uploads/Images/yes.gif" /&gt;&lt;/td&gt;            &lt;td align="center"&gt;&lt;img alt="" width="15" height="15" src="http://kb.macrium.com/Uploads/Images/yes.gif" /&gt;&lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td align="left"&gt;File and Folder backup &lt;/td&gt;            &lt;td align="center"&gt;&lt;img alt="" width="15" height="15" src="http://kb.macrium.com/Uploads/Images/yes.gif" /&gt;&lt;/td&gt;            &lt;td align="center"&gt;&lt;img alt="" width="15" height="15" src="http://kb.macrium.com/Uploads/Images/yes.gif" /&gt;&lt;/td&gt;            &lt;td align="center"&gt;&lt;img alt="" width="15" height="15" src="http://kb.macrium.com/Uploads/Images/yes.gif" /&gt;&lt;/td&gt;        &lt;/tr&gt;        &lt;tr bgcolor="#dddddd"&gt;            &lt;td align="left"&gt;Email notification of backup status&lt;/td&gt;            &lt;td align="center"&gt;&lt;img alt="" width="15" height="15" src="http://kb.macrium.com/Uploads/Images/yes.gif" /&gt;&lt;/td&gt;            &lt;td align="center"&gt;&lt;img alt="" width="15" height="15" src="http://kb.macrium.com/Uploads/Images/yes.gif" /&gt;&lt;/td&gt;            &lt;td align="center"&gt;&lt;img alt="" width="15" height="15" src="http://kb.macrium.com/Uploads/Images/yes.gif" /&gt;&lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td align="left"&gt;Differential and Incremental backups&lt;/td&gt;            &lt;td align="center"&gt;&lt;img alt="" width="15" height="15" src="http://kb.macrium.com/Uploads/Images/yes.gif" /&gt;&lt;/td&gt;            &lt;td align="center"&gt;&lt;img alt="" width="15" height="15" src="http://kb.macrium.com/Uploads/Images/yes.gif" /&gt;&lt;/td&gt;            &lt;td align="center"&gt;&lt;img alt="" width="15" height="15" src="http://kb.macrium.com/Uploads/Images/yes.gif" /&gt;&lt;/td&gt;        &lt;/tr&gt;        &lt;tr bgcolor="#dddddd"&gt;            &lt;td align="left"&gt;Disk Space Management&lt;/td&gt;            &lt;td align="center"&gt;&lt;img alt="" width="15" height="15" src="http://kb.macrium.com/Uploads/Images/yes.gif" /&gt;&lt;/td&gt;            &lt;td align="center"&gt;&lt;img alt="" width="15" height="15" src="http://kb.macrium.com/Uploads/Images/yes.gif" /&gt;&lt;/td&gt;            &lt;td align="center"&gt;&lt;img alt="" width="15" height="15" src="http://kb.macrium.com/Uploads/Images/yes.gif" /&gt;&lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td align="left"&gt;Backup scripting&lt;/td&gt;            &lt;td align="center"&gt;&lt;img alt="" width="15" height="15" src="http://kb.macrium.com/Uploads/Images/yes.gif" /&gt;&lt;/td&gt;            &lt;td align="center"&gt;&lt;img alt="" width="15" height="15" src="http://kb.macrium.com/Uploads/Images/yes.gif" /&gt;&lt;/td&gt;            &lt;td align="center"&gt;&lt;img alt="" width="15" height="15" src="http://kb.macrium.com/Uploads/Images/yes.gif" /&gt;&lt;/td&gt;        &lt;/tr&gt;        &lt;tr bgcolor="#dddddd"&gt;            &lt;td align="left"&gt;Recovery from Windows boot menu&lt;/td&gt;            &lt;td align="center"&gt;&lt;img alt="" width="15" height="15" src="http://kb.macrium.com/Uploads/Images/yes.gif" /&gt;&lt;/td&gt;            &lt;td align="center"&gt;&lt;img alt="" width="15" height="15" src="http://kb.macrium.com/Uploads/Images/yes.gif" /&gt;&lt;/td&gt;            &lt;td align="center"&gt;&lt;img alt="" width="15" height="15" src="http://kb.macrium.com/Uploads/Images/yes.gif" /&gt;&lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td align="left"&gt;Password protection and encryption&lt;/td&gt;            &lt;td align="center"&gt;&lt;img alt="" width="15" height="15" src="http://kb.macrium.com/Uploads/Images/yes.gif" /&gt;&lt;/td&gt;            &lt;td align="center"&gt;&lt;img alt="" width="15" height="15" src="http://kb.macrium.com/Uploads/Images/yes.gif" /&gt;&lt;/td&gt;            &lt;td align="center"&gt;&lt;img alt="" width="15" height="15" src="http://kb.macrium.com/Uploads/Images/yes.gif" /&gt;&lt;/td&gt;        &lt;/tr&gt;        &lt;tr bgcolor="#dddddd"&gt;            &lt;td align="left"&gt;Support for GPT and dynamic disks&lt;a class="ApplyClass" href="http://kb.macrium.com/KnowledgebaseArticle50107.aspx"&gt;*&lt;/a&gt;&lt;/td&gt;            &lt;td&gt; &lt;/td&gt;            &lt;td align="center"&gt;&lt;img alt="" width="15" height="15" src="http://kb.macrium.com/Uploads/Images/yes.gif" /&gt;&lt;/td&gt;            &lt;td align="center"&gt;&lt;img alt="" width="15" height="15" src="http://kb.macrium.com/Uploads/Images/yes.gif" /&gt;&lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td align="left"&gt;Restore to dissimilar hardware with ReDeploy&lt;br /&gt;            &lt;/td&gt;            &lt;td&gt; &lt;/td&gt;            &lt;td align="center"&gt;&lt;img alt="" width="15" height="15" src="http://kb.macrium.com/Uploads/Images/yes.gif" /&gt;&lt;/td&gt;            &lt;td align="center"&gt;&lt;img alt="" width="15" height="15" src="http://kb.macrium.com/Uploads/Images/yes.gif" /&gt;&lt;/td&gt;        &lt;/tr&gt;        &lt;tr bgcolor="#dddddd"&gt;            &lt;td align="left"&gt;Windows Server 2003/2008/2011 compatibility&lt;/td&gt;            &lt;td&gt; &lt;/td&gt;            &lt;td&gt; &lt;/td&gt;            &lt;td align="center"&gt;&lt;img alt="" width="15" height="15" src="http://kb.macrium.com/Uploads/Images/yes.gif" /&gt;&lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td align="left"&gt;Windows Server cross-hardware restore&lt;/td&gt;            &lt;td&gt; &lt;/td&gt;            &lt;td&gt; &lt;/td&gt;            &lt;td align="center"&gt;&lt;img alt="" width="15" height="15" src="http://kb.macrium.com/Uploads/Images/yes.gif" /&gt;&lt;/td&gt;        &lt;/tr&gt;        &lt;tr bgcolor="#dddddd"&gt;            &lt;td align="left"&gt;Integrated Windows event logging&lt;/td&gt;            &lt;td&gt; &lt;/td&gt;            &lt;td&gt; &lt;/td&gt;            &lt;td align="center"&gt;&lt;img alt="" width="15" height="15" src="http://kb.macrium.com/Uploads/Images/yes.gif" /&gt;&lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td&gt; &lt;/td&gt;            &lt;td align="center"&gt;            &lt;a href="http://www.macrium.com/personal.aspx#std" alt="Buy now"&gt;            &lt;img alt="" width="133" height="40" src="http://www.macrium.com/common/buynow.png" /&gt;            &lt;/a&gt;            &lt;/td&gt;            &lt;td align="center"&gt;            &lt;a href="http://www.macrium.com/business.aspx#pro" alt="Buy now"&gt;            &lt;img alt="" width="133" height="40" src="http://www.macrium.com/common/buynow.png" /&gt;            &lt;/a&gt;            &lt;/td&gt;            &lt;td align="center"&gt;            &lt;a href="http://www.macrium.com/business.aspx#server" alt="Buy now"&gt;            &lt;img alt="" width="133" height="40" src="http://www.macrium.com/common/buynow.png" /&gt;            &lt;/a&gt;            &lt;/td&gt;        &lt;/tr&gt;    &lt;/tbody&gt;&lt;/table&gt;&lt;/span&gt;&lt;hr /&gt;&lt;p&gt;&lt;br /&gt;*To identify if you require dynamic or GPT disk support, read &lt;a class="ApplyClass" href="http://kb.macrium.com/KnowledgebaseArticle50107.aspx"&gt;this&lt;/a&gt;.&lt;/p&gt;</description><pubDate>Wed, 19 Oct 2011 09:20:46 GMT</pubDate><dc:creator>evan.tringham@macrium.com</dc:creator></item><item><title>VSS Error: 0x80042317: Failed to Create Volume Snapshot</title><link>http://kb.macrium.com/Goto50117.aspx</link><description>&lt;h3&gt;Error&lt;/h3&gt;&lt;strong&gt;&lt;span style="color: #ff0000;"&gt;0x80042317: Failed to Create Volume Snapshot&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;&lt;hr /&gt;&lt;h3&gt;Description &lt;/h3&gt;&lt;span id="BugEvents"&gt;Error 0x80042317 is a Microsoft Volume Shadow Copy error and indicates that there are too many snapshots on your system. &lt;br /&gt;&lt;br /&gt;&lt;hr /&gt;&lt;/span&gt;&lt;h3&gt;Solution &lt;/h3&gt;&lt;span id="BugEvents"&gt;A reboot may resolve the problem. If not, to delete all of the existingvolume shadow copy snapshots, type 'vssadmin delete shadows /all' from acommand prompt. You will need to run the command prompt as anadministrator in Vista/7.&lt;br /&gt;&lt;br /&gt;It seems that your images are failing to verify due to a problem readingyour backup disk. Please run 'chkdsk m: /r /f' from a command prompt.This will scan the disk for errors and may take some time to complete.If drive 'M:' is formatted using FAT32 then you might want to considerre-formatting using NTFS. NTFS is a more robust file system.&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;</description><pubDate>Mon, 17 Oct 2011 10:01:17 GMT</pubDate><dc:creator>jon.dittman@macrium.com</dc:creator></item><item><title>VSS Error: 0x80042301 - Failed to create volume snapshot </title><link>http://kb.macrium.com/Goto50115.aspx</link><description>&lt;h3&gt;Error&lt;/h3&gt;&lt;blockquote&gt;&lt;span style="color: #ff0000;"&gt;Backup aborted! - Failed to create volume snapshot error. Result Code: 0x80042301&lt;/span&gt;&lt;br /&gt;&lt;/blockquote&gt;&lt;hr /&gt;&lt;h3&gt;Description&lt;/h3&gt;&lt;blockquote&gt;The windows snapshot component VSS will fail if a disk with a non standard sector size is attached to your system, even if this disk is either being backed up or used to store the image files. This can be an internal disk or one connected by USB or eSata. These disks are fortunately rare, and are typically found only in sizes of 1TB or above.&lt;br /&gt;&lt;/blockquote&gt;&lt;h3&gt;Error reporting in V5 Reflect &lt;/h3&gt;&lt;blockquote&gt;The extended VSS error information will be reported as below for version 5. See image, note the result code may be different, but the extended error will always be ...&lt;br /&gt;&lt;br /&gt;ERROR: COM call "m_pVssObject-&amp;gt;BackupComplete(&amp;amp;pAsync)" failed.&lt;br /&gt;- Returned HRESULT = 0x80042301&lt;br /&gt;- Error text: VSS_E_BAD_STATE&lt;br /&gt;&lt;br /&gt;&lt;img alt="" style="width: 582px; height: 395px;" src="http://kb.macrium.com/KbImages/115/v5_non_standard_sector_size_error.png" /&gt;&lt;br /&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;h3&gt; &lt;/h3&gt;&lt;h3&gt;Error reporting in V4 Reflect&lt;/h3&gt;&lt;blockquote&gt;You will see the following error, note the result code may be different.&lt;br /&gt;&lt;br /&gt;To get the extended VSS information, you need to run the backup from a&lt;span id="BugEvents"&gt; VBScript file? Right on your XML definition andselect 'Generate VBScript'. Accept the defaults and run the VBScriptsource. To run VBScript, click the VBSCript tab, right click on the fileand select 'Execute'. Once run, a detailed log file will be created inthe same directory as the VBScript source. The log file name will be'log-&amp;lt;date&amp;gt;-&amp;lt;time&amp;gt;.txt'. Open the log file with notepad or similar and search for the following text as before ...&lt;/span&gt;&lt;br /&gt;&lt;span id="BugEvents"&gt;&lt;/span&gt;&lt;br /&gt;&lt;span id="BugEvents"&gt;ERROR: COM call "m_pVssObject-&amp;gt;BackupComplete(&amp;amp;pAsync)" failed.&lt;/span&gt;&lt;br /&gt;&lt;span id="BugEvents"&gt;- Returned HRESULT = 0x80042301&lt;/span&gt;&lt;br /&gt;&lt;span id="BugEvents"&gt;- Error text: VSS_E_BAD_STATE&lt;/span&gt;&lt;br /&gt;&lt;span id="BugEvents"&gt;&lt;/span&gt;&lt;br /&gt;&lt;span id="BugEvents"&gt;&lt;/span&gt;&lt;img alt="" src="http://kb.macrium.com/KbImages/115/v4_non_standard_sector_size_error.png" /&gt;&lt;br /&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;h3&gt; &lt;/h3&gt;&lt;h3&gt;Identification of disks with a non standard sector size&lt;/h3&gt;&lt;blockquote&gt;Run 'System Information' ('All Programs' &amp;gt; 'Accessories' &amp;gt; 'System Tools' &amp;gt; 'System Information').&lt;br /&gt;Expand the Components-&amp;gt;Storage-&amp;gt;Disks node, and scroll down the list of disks, looking for any that have a Bytes/Sector value &lt;strong&gt;not&lt;/strong&gt; equal to 512.&lt;br /&gt;&lt;img alt="" src="http://kb.macrium.com/KbImages/115/sysinfo_non_standard_sector_size_error.png" /&gt;&lt;br /&gt;&lt;/blockquote&gt;&lt;h3&gt; &lt;/h3&gt;&lt;h3&gt; &lt;/h3&gt;&lt;h3&gt; &lt;/h3&gt;&lt;h3&gt;&lt;hr /&gt;Solution&lt;/h3&gt;&lt;blockquote&gt;Unfortunately, until Microsoft fix this issue, the only option is to remove this disk from your system. Read this&lt;br /&gt;&lt;a class="ApplyClass" href="http://support.microsoft.com/kb/2510009"&gt;Article&lt;/a&gt; for general information regarding Microsoft support for non-standard sector sizes.&lt;br /&gt;&lt;br /&gt;Note: Some &lt;span id="BugEvents"&gt;Western Digital disks can be formatted for "Windows Vista Compatibility" using the supplied software.  &lt;/span&gt;This enables 512e in the firmware and adds support for VSS. &lt;/blockquote&gt;</description><pubDate>Wed, 12 Oct 2011 11:13:42 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>v5: v4 Upgrade FAQ</title><link>http://kb.macrium.com/Goto50114.aspx</link><description>&lt;p&gt;This FAQ covers some of the commonly encountered queries regarding transitioning from Macrium Reflect v4 to v5.&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;hr /&gt;&lt;p&gt;&lt;/p&gt;&lt;h3&gt;Will I need to recreate my v4 backup XML definition files? &lt;/h3&gt;v4 xml files are compatible with v5. Note that v4 incremental/differential xml files are not editable in v5; they are not required as you don't need separate full/inc xml files in v5.&lt;hr /&gt;&lt;h3&gt;Can Version 5 be installed over 4? Will both 4 and 5 be on the hard drive? Should 4 be uninstalled first?&lt;/h3&gt;Versions 4 and 5 will not exist on your system at the same time. The version 5 installer will uninstall version 4, as part of the install process.&lt;hr /&gt;&lt;h3&gt;Does Windows PE need to be reinstalled and new rescue CDs made? Will the old Rescue CDs still work?&lt;/h3&gt;The version 4 winPe rescue CD will restore images created with Reflect v5. However, the v5 rescue environment has many new features and is based on the newly released WinPE3.1.Windows PE is installed at the same time as the application if you have paid for a version 5 license. Due to licensing restrictions from Microsoft, if you have taken the free upgrade option available to those purchasing v4 within the last 3 months, then you get the new winPE 3.1 rescue environment using our automated WAIK download and build feature.&lt;br /&gt;You can read more about the different v5 rescue CD's &lt;a href="http://kb.macrium.com/KnowledgebaseArticle50082.aspx" class="ApplyClass"&gt;here&lt;/a&gt;.&lt;br /&gt;&lt;hr /&gt;&lt;h3&gt;Can you restore an image taken with v4 to different hardware?&lt;/h3&gt;Yes, but note that you need v5 professional or servers edition to restore v4/v5 server OS's to new hardware.&lt;hr /&gt;&lt;h3&gt;Why can’t I change the install location?&lt;/h3&gt;For update installs, the facility to change install location is disabled as your scheduled tasks will fail as they reference the reflect program folder.&lt;br /&gt;If you do wish to change the install location&lt;br /&gt;1) Remove any scheduled tasks.&lt;br /&gt;2) Uninstall Reflect.&lt;br /&gt;3) Install, note now you can change the install location.&lt;br /&gt;4) Setup your scheduled tasks.&lt;br /&gt;&lt;hr /&gt;&lt;h3&gt;After purchasing an upgrade, can I continue to use my 4.2 license on another computer?&lt;/h3&gt;The v5 upgrade is discounted on the basis that you are upgrading your license. Therefore you still are only licensed to use reflect on a single computer. Your v4 license key will be revoked as part of the upgrade process.&lt;hr /&gt;&lt;h3&gt;Do I need the professional edition?&lt;/h3&gt;If you wish to restore a windows image to new hardware, you need the proedition. Also, if you have dynamic or gpt disks, professional isrequired. Read &lt;a href="http://kb.macrium.com/KnowledgebaseArticle50107.aspx" class="ApplyClass"&gt;here&lt;/a&gt; to identify dynamic or gpt disks.&lt;br /&gt;&lt;br /&gt;</description><pubDate>Mon, 10 Oct 2011 11:01:03 GMT</pubDate><dc:creator>john.pendleton@macrium.com</dc:creator></item><item><title>v5: Works on Windows 8 dev preview</title><link>http://kb.macrium.com/Goto50113.aspx</link><description>Macrium reflect has been tested on Windows 8 developer preview.&lt;br /&gt;&lt;br /&gt;It appears to function correctly, with regard to imaging, restoring and adding a rescue boot menu item.&lt;br /&gt;&lt;br /&gt;Please note that it has not been through our rigorous testing program, so we do not yet officially support it on this platform. Also, Windows 8 is still in flux, so you may have a different experience on later releases. &lt;br /&gt;&lt;br /&gt; &lt;img alt="" src="http://kb.macrium.com/kbimages/win8_2.png" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;img alt="" src="http://kb.macrium.com/kbimages/win8_1.png" /&gt;&lt;br /&gt;</description><pubDate>Tue, 27 Sep 2011 13:41:53 GMT</pubDate><dc:creator>john.pendleton@macrium.com</dc:creator></item><item><title>v5: How to uninstall, removing all traces of Macrium Reflect</title><link>http://kb.macrium.com/Goto50112.aspx</link><description>By default, un-installing Macrium reflect will leave any user generated log files and backup definitions in place. This is by design and follows the standard installer design, however, if you wish to remove all traces of Macrium Reflect on your machine, use the following sequence:&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;1. Open control panel -&amp;gt; Program files, locate Macrium Reflect and right click.&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;&lt;blockquote&gt;&lt;img alt="" src="http://kb.macrium.com/kbimages/RemoveAll_1.png" style="width: 607px; height: 245px;" /&gt;&lt;br /&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;strong&gt;2. Select the Change option. And then click on Remove.&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;&lt;blockquote&gt;&lt;img alt="" src="http://kb.macrium.com/kbimages/RemoveAll_2.png" /&gt;&lt;br /&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;strong&gt;3. Check "Remove all user generated files and log files" and click on Remove&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;&lt;blockquote&gt;&lt;img alt="" src="http://kb.macrium.com/kbimages/RemoveAll_3.png" /&gt;&lt;/blockquote&gt;</description><pubDate>Tue, 27 Sep 2011 13:27:54 GMT</pubDate><dc:creator>Administrator</dc:creator></item></channel></rss>
