﻿<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"><channel><title>Macrium KB » Knowledgebase » Tutorials » Latest Articles</title><generator>InstantKB.NET 2.0.6</generator><description>Macrium KB</description><link>http://www.macrium.com/KB/</link><webMaster>suppport@macrium.com</webMaster><lastBuildDate>Wed, 08 Sep 2010 14:18:16 GMT</lastBuildDate><ttl>20</ttl><item><title>Using VBScript for alternate backup locations</title><link>http://www.macrium.com/KB/Goto50060.aspx</link><description>This article takes you through the steps required to enable alternate backup locations for a disk image or file and folder backup.&lt;br /&gt;&lt;br /&gt;&lt;hr /&gt;In a typical backup rotation scenario you may have two (or more) external USB drives that are rotated on a weekly basis. The external drive that isn't currently in use can be stored off-site for extra security. &lt;br /&gt;&lt;br /&gt;This example assumes that you have two external USB drives that when connected to your PC, show up as drive 'E:' and drive 'F:'.  Your images of drive 'C' are saved to 'E:\Images' and 'F:\Images' and the ideal solution is for Macrium Reflect to save your image file(s) to whichever drive is currently connected to your PC. &lt;br /&gt;&lt;br /&gt;This can be achieved by using the VBScript feature of Macrium Reflect to detect which drive is connected and run the appropriate backup definition.  &lt;br /&gt;&lt;br /&gt;Here's how...&lt;br /&gt;&lt;br /&gt;&lt;ol&gt;    &lt;li&gt;    &lt;strong&gt;Create two XML backup definitions&lt;/strong&gt;. One to save the image of drive 'C' to 'E:\Images' and the other to save to 'F:\Images'. We'll call them &lt;strong&gt;'Image to E.xml'&lt;/strong&gt; and &lt;strong&gt;'Image to F.xml'&lt;/strong&gt;&lt;br /&gt;      &lt;/li&gt;    &lt;li&gt;    &lt;strong&gt;Right click on 'Image to E'&lt;/strong&gt; and select 'Generate a VBScript file'.&lt;br /&gt;     &lt;br /&gt;     &lt;img alt="" src="http://www.macrium.com/KB/Uploads/Images/imagetoE.jpg" /&gt;&lt;br /&gt;      &lt;/li&gt;    &lt;li&gt;    Accept all the defaults and &lt;strong&gt;click 'OK'&lt;/strong&gt;.&lt;br /&gt;      &lt;/li&gt;    &lt;li&gt;&lt;strong&gt;Click the 'VBScript' tab&lt;/strong&gt;,&lt;strong&gt; right click on the VBScript file&lt;/strong&gt; and &lt;strong&gt;select 'Edit'&lt;br /&gt;    &lt;/strong&gt;&lt;br /&gt;     &lt;img alt="" src="http://www.macrium.com/KB/Uploads/Images/imagetoEEdit.jpg" /&gt;&lt;br /&gt;     &lt;br /&gt;      &lt;/li&gt;    &lt;li&gt;The file will now open in 'Notepad'. &lt;strong&gt;Turn of 'Word Wrap'&lt;/strong&gt; to make editing easier...&lt;br /&gt;     &lt;br /&gt;    &lt;img alt="" src="http://www.macrium.com/KB/Uploads/Images/wordwrap2.jpg" /&gt;&lt;br /&gt;     &lt;br /&gt;      &lt;/li&gt;    &lt;li&gt;    Edit the file in notepad as follows:&lt;/li&gt;&lt;/ol&gt;&lt;blockquote&gt;Replace the line:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: courier new; color: green;"&gt;&lt;strong&gt;ExitCode = Backup ("""C:\Program Files\Macrium\Reflect\reflect.exe"" -e -w ""c:\users&lt;br&gt;ick\documents\reflect\Image to E.xml""")&lt;/strong&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new; color: green;"&gt;&lt;/span&gt;&lt;br /&gt;With the following lines:&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;&lt;span style="font-family: courier new; color: green;"&gt;If DoesDirExist("E:\") = true Then&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;&lt;span style="font-family: courier new; color: green;"&gt;    ExitCode = Backup ("""C:\Program Files\Macrium\Reflect\reflect.exe"" -e -w ""&lt;span style="font-family: courier new;"&gt;&lt;strong&gt;c:\users&lt;br&gt;ick\documents\reflect\Image to E&lt;/strong&gt;&lt;/span&gt;.xml""")&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;&lt;span style="font-family: courier new; color: green;"&gt;Else&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;&lt;span style="font-family: courier new; color: green;"&gt;    ExitCode = Backup ("""C:\Program Files\Macrium\Reflect\reflect.exe"" -e -w ""&lt;span style="font-family: courier new;"&gt;&lt;strong&gt;c:\users&lt;br&gt;ick\documents\reflect\Image to F&lt;/strong&gt;&lt;/span&gt;.xml""")&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;&lt;span style="font-family: courier new; color: green;"&gt;End If&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Note: &lt;/strong&gt;Replace XML path and file names with the correct names for your scenario.&lt;br /&gt;&lt;br /&gt;At the end of the VBScript source paste the following lines:&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;&lt;span style="font-family: courier new; color: green;"&gt;Function DoesDirExist(byVal pathname)&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;&lt;span style="font-family: courier new; color: green;"&gt;    Dim objFSO&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;&lt;span style="font-family: courier new; color: green;"&gt;    Set objFSO = CreateObject("Scripting.FileSystemObject")&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;&lt;span style="font-family: courier new; color: green;"&gt;    DoesDirExist = objFSO.FolderExists(pathname)&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;&lt;span style="font-family: courier new; color: green;"&gt;    Set objFSO = Nothing&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;&lt;span style="font-family: courier new; color: green;"&gt;End Function&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;&lt;/blockquote&gt;&lt;br /&gt; 7. &lt;strong&gt;Save the file.&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;You can run VBScript files like XML files and you can schedule the VBScript file to run by right clicking on the file and selecting 'Execute' or 'Schedule'.&lt;br /&gt;&lt;br /&gt;&lt;hr /&gt;</description><pubDate>Sun, 22 Aug 2010 23:34:39 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>Using VBScript to delete differential images</title><link>http://www.macrium.com/KB/Goto50059.aspx</link><description>This article shows you how to use VBScript to delete differential images in a backup set. This enables you to retain a specified number of recent differential images.&lt;br /&gt;&lt;br /&gt;&lt;hr /&gt;In the following example we will generate a VBScript source file that creates a differential image and then deletes differentials in the same image set retaining the '4' most recent differential images.&lt;br /&gt;&lt;br /&gt;&lt;ol&gt;    &lt;li&gt;    &lt;strong&gt;Right click&lt;/strong&gt; on your differential XML definition and &lt;strong&gt;select 'Generate a VBScript file'&lt;/strong&gt;.&lt;br /&gt;     &lt;br /&gt;    &lt;img alt="" src="http://www.macrium.com/KB/Uploads/Images/generatevbscript.jpg" /&gt;&lt;br /&gt;     &lt;br /&gt;      &lt;/li&gt;    &lt;li&gt;Accept all the defaults and &lt;strong&gt;click 'OK'&lt;br /&gt;      &lt;/strong&gt;&lt;/li&gt;    &lt;li&gt;&lt;strong&gt;Click the VBScript tab&lt;/strong&gt;, &lt;strong&gt;right click on the new VBScript list entry &lt;/strong&gt;and &lt;strong&gt;select 'Edit'&lt;/strong&gt;. Notepad will open.&lt;br /&gt;     &lt;br /&gt;     &lt;img alt="" src="http://www.macrium.com/KB/Uploads/Images/editvbvsmenu.jpg" /&gt;&lt;br /&gt;      &lt;span id="ctl00_ctlContentPlaceHolder_ctl00_ctlViewArticle_ctlPanelBar_lblArticleText"&gt;&lt;br /&gt;    Make sure you &lt;strong&gt;turn off 'Word Wrap'&lt;/strong&gt; as this makes editing a lot easier.&lt;br /&gt;     &lt;br /&gt;    &lt;img alt="" src="http://www.macrium.com/KB/Uploads/Images/wordwrap1.jpg" /&gt;&lt;br /&gt;         &lt;br /&gt;    &lt;br /&gt;    &lt;/span&gt;&lt;/li&gt;    &lt;li&gt;&lt;strong&gt;Edit the file&lt;/strong&gt; in Notepad as follows:&lt;/li&gt;&lt;/ol&gt;&lt;br /&gt;After the line:&lt;br /&gt;&lt;strong&gt;&lt;span style="color: green;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-family: courier new; color: green;"&gt;ExitCode = Backup ("""C:\Program Files\Macrium\Reflect\reflect.exe"" -e -w ""PATH TO XML""")&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Copy and paste the following:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: courier new; color: green;"&gt;&lt;br /&gt;&lt;strong&gt;DeleteDifferentialFiles ExitCode, 4&lt;/strong&gt;&lt;/span&gt;&lt;strong&gt;&lt;br /&gt;&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Note: &lt;/strong&gt;The number '4' above is the number of recent differential files you want to keep in the backup set&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;At the very &lt;strong&gt;*end*&lt;/strong&gt; of the file &lt;strong&gt;copy and paste the following code:&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;&lt;span style="font-family: courier new; color: green;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;/strong&gt;&lt;strong&gt;&lt;span style="font-family: courier new; color: green;"&gt;'******************************************************************************&lt;br /&gt;'* Function: DeleteDifferentialFiles&lt;br /&gt;'*&lt;br /&gt;'* Purpose:  Deletes all but most 'n' recent differential file(s).&lt;br /&gt;'*       &lt;br /&gt;'*           Uses Macrium environment variables to&lt;br /&gt;'*           determine which files to delete. &lt;br /&gt;'*&lt;br /&gt;'* Input:   ExitCode                    -The exit code of the last backup&lt;br /&gt;'*           NumberOfDifferentialsToKeep - The number of differentials to retain&lt;br /&gt;'*&lt;br /&gt;'******************************************************************************&lt;br /&gt;Function DeleteDifferentialFiles(Byval ExitCode, Byval NumberOfDifferentialsToKeep)&lt;br /&gt;Dim objShell &lt;br /&gt;    Dim objWshProcessEnv&lt;br /&gt;    Dim strEnvName&lt;br /&gt;    Dim nFiles&lt;br /&gt;    Dim Count&lt;br /&gt;    Dim strEnvPrefix&lt;br /&gt;    Dim strCurrentDifferentialNumber&lt;br /&gt;    Dim strFileToDelete    &lt;br /&gt;    Dim objFS&lt;br /&gt;    &lt;br /&gt;' Only delete  files if backup was successful &lt;br /&gt;    if ExitCode &amp;lt;&amp;gt; 0 Then&lt;br /&gt;        Exit Function&lt;br /&gt;    End If&lt;br /&gt;    Set objFS = CreateObject("Scripting.FileSystemObject")&lt;br /&gt;    Set objShell  = WScript.CreateObject("WScript.Shell")&lt;br /&gt;    Set objWshProcessEnv = objShell.Environment("VOLATILE")&lt;br /&gt;&lt;br /&gt;    &lt;br /&gt;' Get the prefix for the last backup set&lt;br /&gt;    strEnvPrefix = objWshProcessEnv("MACRIUM_PREFIX")&lt;br /&gt;    &lt;br /&gt;' Get the total number of files for the last backup set&lt;br /&gt;    nFiles = CInt(objWshProcessEnv(strEnvPrefix + "_FILECOUNT"))&lt;br /&gt;' Get the last differential number. Note: differential 0 is the full backup&lt;br /&gt;    strCurrentDifferentialNumber   = objWshProcessEnv(strEnvPrefix + "_CURRENT_INCREMENT")&lt;br /&gt;   for Count = 1 To nFiles&lt;br /&gt;        ' Construct the environment variable name for the differential for eachfile&lt;br /&gt;        strEnvName = strEnvPrefix + "_INCREMENT" + CStr(Count)&lt;br /&gt;        ' Don't delete the current differential or the full image&lt;br /&gt;        if CInt(objWshProcessEnv(strEnvName)) &amp;lt; ( CInt(strCurrentDifferentialNumber) -NumberOfDifferentialsToKeep + 1)  AND objWshProcessEnv(strEnvName) &amp;lt;&amp;gt; "0" Then &lt;br /&gt;            ' Construct the environment variable for the full filepath&lt;br /&gt;            strEnvName = strEnvPrefix + "_FILEPATH" + CStr(Count)&lt;br /&gt;            strFileToDelete = objWshProcessEnv(strEnvName)&lt;br /&gt;            ' Delete the file if itexists           &lt;br /&gt;            If objFS.FileExists(strFileToDelete) Then&lt;br /&gt;                   ON ERROR RESUME NEXT&lt;br /&gt;               objFS.DeleteFile strFileToDelete&lt;br /&gt;           End If   &lt;br /&gt;    End If&lt;br /&gt;    Next&lt;br /&gt;    &lt;br /&gt;' Clean up&lt;br /&gt;    Set objShell = nothing&lt;br /&gt;    Set objWshProcessEnv = nothing&lt;br /&gt;    Set objFS = nothing&lt;br /&gt;End Function&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;/strong&gt;5. &lt;strong&gt;Save the file.&lt;/strong&gt; You can run VBScript files like XML files and you can schedule the VBScript file to run by right clicking on the file and selecting 'Schedule'.&lt;br /&gt;&lt;br /&gt;&lt;span id="ctl00_ctlContentPlaceHolder_ctl00_ctlViewArticle_ctlPanelBar_lblArticleText"&gt;&lt;br /&gt;&lt;table cellspacing="0" class="whs20" style="width: 100%; height: 50px;"&gt;    &lt;thead&gt;    &lt;/thead&gt;    &lt;col class="whs21" /&gt; &lt;col class="whs22" /&gt;    &lt;tbody&gt;        &lt;tr style="vertical-align: top;"&gt;            &lt;td class="whs23" style="vertical-align: middle;"&gt;            &lt;p&gt;&lt;img alt="" src="http://www.macrium.com/webhelp/image3.gif" style="width: 36px; height: 37px;" /&gt;&lt;/p&gt;            &lt;/td&gt;            &lt;td style="background-color: #e5e5e5;" class="whs24"&gt;            &lt;p&gt;            &lt;strong&gt;&lt;br /&gt;            Note&lt;/strong&gt;: You should only run this script on &lt;strong&gt;*differential* &lt;/strong&gt;backup sets.             &lt;/p&gt;            &lt;/td&gt;        &lt;/tr&gt;    &lt;/tbody&gt;&lt;/table&gt;&lt;ul&gt;&lt;/ul&gt;    &lt;span xmlns="http://www.w3.org/1999/xhtml"&gt;                                                                                        &lt;/span&gt;&lt;/span&gt;&lt;br /&gt;</description><pubDate>Sun, 22 Aug 2010 11:13:21 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>How to automatically shut down your PC after a Macrium Reflect backup</title><link>http://www.macrium.com/KB/Goto50056.aspx</link><description>This article shows you how to automatically shut-down your PC after a Macrium Reflect disk image or file backup. This enables you to perform a backup job at the end of the day without having to wait until the backup finishes to turn off your PC.&lt;br /&gt;&lt;br /&gt;You can also create a Desktop shortcut to the backup job. &lt;strong&gt;This enables you to run the backup and shutdown your PC with a simple double click!&lt;/strong&gt;&lt;br /&gt;&lt;h3&gt;&lt;strong&gt;&lt;hr /&gt;&lt;/strong&gt;&lt;/h3&gt;First you need to &lt;a href="http://www.macrium.com/KB/KnowledgebaseArticle50039.aspx" class="ApplyClass"&gt;create an xmlbackup definition file&lt;/a&gt; and then follow the steps below :&lt;br /&gt;&lt;p&gt;&lt;/p&gt;&lt;ol&gt;    &lt;li&gt;&lt;strong&gt;Right click&lt;/strong&gt; on the xml file and &lt;strong&gt;select 'Generate a    &lt;span onmouseover="ikb_showGlossaryToopTip(9);" class="glossaryToolTip"&gt;VBScript&lt;/span&gt; file'&lt;/strong&gt;&lt;br /&gt;    &lt;br /&gt;    &lt;img alt="" src="http://www.macrium.com/KB/Uploads/Images/genvbscript.jpg" /&gt;&lt;br /&gt;     &lt;br /&gt;     &lt;/li&gt;    &lt;li&gt;The following dialog is shown. &lt;strong&gt;Select the 'Shutdown' option.&lt;/strong&gt;&lt;br /&gt;    &lt;br /&gt;    &lt;img alt="" src="http://www.macrium.com/KB/Uploads/Images/shutdown.jpg" /&gt;&lt;br /&gt;    &lt;br /&gt;    &lt;strong&gt;Select 'Enable Shut Down' &lt;/strong&gt;and &lt;strong&gt;choose the 'Shut Down'&lt;/strong&gt; radio button.&lt;br /&gt;     &lt;br /&gt;     &lt;/li&gt;    &lt;li&gt;You might want to explore the other options within the window to see if    there are any you would want to enable or modify, &lt;strong&gt;then click    'OK'&lt;/strong&gt;&lt;strong&gt;&lt;br /&gt;    &lt;br /&gt;    That's it!&lt;/strong&gt; You should now get an email    every time that you run the &lt;span onmouseover="ikb_showGlossaryToopTip(9);" class="glossaryToolTip"&gt;VBscript&lt;/span&gt; that you have    created!&lt;/li&gt;&lt;/ol&gt;&lt;h3&gt;&lt;strong&gt;&lt;hr /&gt;&lt;/strong&gt;&lt;/h3&gt;&lt;h3&gt;How do I run it?&lt;/h3&gt;To run &lt;span onmouseover="ikb_showGlossaryToopTip(9);" class="glossaryToolTip"&gt;VBScript&lt;/span&gt; source files fromMacrium Reflect, &lt;strong&gt;click the &lt;span onmouseover="ikb_showGlossaryToopTip(9);" class="glossaryToolTip"&gt;VBScript&lt;/span&gt; tab, right click on thefile&lt;/strong&gt; and &lt;strong&gt;select 'Execute'&lt;/strong&gt;. You can schedule thescript by taking the 'Schedule' option.&lt;br /&gt;&lt;br /&gt;You can also create a Desktop Shortcut to the VBScript source and simply &lt;strong&gt;double click the icon on your Desktop&lt;/strong&gt; to start the backup.&lt;br /&gt;&lt;br /&gt;To create a Desktop Shortcut, &lt;strong&gt;click the &lt;span onmouseover="ikb_showGlossaryToopTip(9);" class="glossaryToolTip"&gt;VBScript&lt;/span&gt; tab, right click on thefile&lt;/strong&gt; and &lt;strong&gt;select 'Create a Desktop Shortcut'&lt;/strong&gt;. &lt;br /&gt;&lt;br /&gt;&lt;img alt="" src="http://www.macrium.com/KB/Uploads/Images/shortcut.jpg" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;h3&gt;&lt;strong&gt;&lt;hr /&gt;&lt;/strong&gt;&lt;/h3&gt;&lt;h3&gt;&lt;/h3&gt;&lt;br /&gt;</description><pubDate>Tue, 03 Aug 2010 11:36:17 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>How to send backup completion emails with Macrium Reflect</title><link>http://www.macrium.com/KB/Goto50055.aspx</link><description>&lt;p&gt;This article takes you through the steps required to send email notifications of backup completion status. Emails are sent using the VBScript generator in Macrium Reflect, and the VBScript source can easily be modified for SSL and SMTP authentication if required.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&lt;hr /&gt;&lt;/strong&gt;&lt;br /&gt;First you need to &lt;a href="http://www.macrium.com/KB/KnowledgebaseArticle50039.aspx" class="ApplyClass"&gt;create an xml backup definition file&lt;/a&gt; and then follow the steps below :&lt;/p&gt;&lt;ol&gt;    &lt;li&gt;&lt;strong&gt;Right click&lt;/strong&gt; on the xml file and &lt;strong&gt;select 'Generate a VBScript file'&lt;/strong&gt;&lt;br /&gt;    &lt;br /&gt;     &lt;img alt="" src="http://www.macrium.com/KB/Uploads/Images/genvbscript.jpg" /&gt;&lt;br /&gt;     &lt;br /&gt;     &lt;/li&gt;    &lt;li&gt;The following dialog is shown.&lt;strong&gt; Select the 'Email' option&lt;br /&gt;     &lt;br /&gt;     &lt;img alt="" src="http://www.macrium.com/KB/Uploads/Images/selectemail.jpg" /&gt;&lt;br /&gt;    &lt;/strong&gt;&lt;br /&gt;    &lt;br /&gt;    &lt;strong&gt;Click 'Enable Email Component'&lt;/strong&gt; and &lt;strong&gt;enter your SMTP server and email address details&lt;/strong&gt;.&lt;br /&gt;    &lt;br /&gt;    &lt;strong&gt;Attach log file to Email &lt;/strong&gt;- This option attaches the log file from Reflect to the email that is sent.&lt;br /&gt;    &lt;br /&gt;    &lt;strong&gt;SMTP Server&lt;/strong&gt;    - This is the address for the email server that Macrium Reflect will    use to send the email, this can be a FQDN such as smtp.domain.com, or an    IP address, for example, 86.184.0.5&lt;br /&gt;    &lt;br /&gt;    &lt;strong&gt;From Email &lt;/strong&gt;- This is the email address that will be sending the email, for example, backup@yourdomain.com.&lt;br /&gt;    &lt;br /&gt;    &lt;strong&gt;To Email&lt;/strong&gt;    - This is who you want to send the email to, you can enter multiple    addresses like so: bob@yourdomain.com; bill@yourdomain.com; &lt;br /&gt;    &lt;br /&gt;    &lt;strong&gt;Success and Failure Tabs&lt;/strong&gt;    - These two tabs allow you to modify the content of the email by    success or failure, the top box allows you to ammend the subject of the    email, the bottom box allow you to modify the email content.&lt;br /&gt;     &lt;br /&gt;     &lt;/li&gt;    &lt;li&gt;You might want to explore the other options within the window to see if there are any you would want to enable or modify, &lt;strong&gt;then click 'OK'&lt;/strong&gt;&lt;strong&gt;&lt;br /&gt;    &lt;br /&gt;    That's it!&lt;/strong&gt; You should now get an email every time that you run the VBscript that you have created!&lt;br /&gt;       &lt;/li&gt;&lt;/ol&gt;&lt;p&gt; &lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;h3&gt;&lt;strong&gt;&lt;hr /&gt;&lt;/strong&gt;&lt;p&gt;&lt;/p&gt;&lt;/h3&gt;&lt;h3&gt;&lt;/h3&gt;&lt;h3&gt;How do I run it?&lt;/h3&gt;To run VBScript source files from Macrium Reflect, &lt;strong&gt;click the VBScript tab, right click on the file&lt;/strong&gt; and &lt;strong&gt;select 'Execute'&lt;/strong&gt;. You can also schedule the script by taking the 'Schedule' option.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;&lt;hr /&gt;&lt;/strong&gt;&lt;p&gt;&lt;/p&gt;&lt;h3&gt;How to modify the generated VBScript to send email via GMail&lt;/h3&gt;&lt;p&gt;Aftercreating the VBScript you can modify the source directly in notepad to add additional email settings. In this example we'll modify the settings to use GMail's SMTP server. &lt;br /&gt;&lt;br /&gt;&lt;table cellspacing="0" class="whs20" style="width: 100%; height: 50px;"&gt;    &lt;thead&gt;    &lt;/thead&gt;    &lt;col class="whs21" /&gt; &lt;col class="whs22" /&gt;    &lt;tbody&gt;        &lt;tr style="vertical-align: top;"&gt;            &lt;td class="whs23" style="vertical-align: middle;"&gt;            &lt;p&gt;&lt;img alt="" src="http://www.macrium.com/webhelp/image3.gif" style="width: 36px; height: 37px;" /&gt;&lt;/p&gt;            &lt;/td&gt;            &lt;td style="background-color: #e5e5e5;" class="whs24"&gt;            &lt;p&gt;&lt;span class="Times"&gt;&lt;strong&gt;&lt;span class="color11"&gt;Note: &lt;/span&gt;&lt;/strong&gt;&lt;span class="color11"&gt;You can easily change the settings outlined below to work with any SMTP server.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;            &lt;/td&gt;        &lt;/tr&gt;    &lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;  &lt;/p&gt;&lt;ol&gt;    &lt;li&gt;&lt;strong&gt;R&lt;/strong&gt;&lt;strong&gt;ight click&lt;/strong&gt; on the VBscript list entry, and &lt;strong&gt;select 'Edit'&lt;/strong&gt;&lt;br /&gt;    &lt;br /&gt;    &lt;img alt="" src="http://www.macrium.com/KB/Uploads/Images/editvbs.jpg" /&gt;&lt;br /&gt;    &lt;br /&gt;    This will open up notepad with the VBScript for editing.&lt;br /&gt;    &lt;br /&gt;    Make sure you &lt;strong&gt;turn off 'Word Wrap'&lt;/strong&gt; as this makes editing a lot easier.&lt;br /&gt;    &lt;br /&gt;    &lt;img alt="" src="http://www.macrium.com/KB/Uploads/Images/wordwrap.jpg" /&gt;&lt;br /&gt;     &lt;br /&gt;     &lt;br /&gt;     &lt;/li&gt;    &lt;li&gt;&lt;strong&gt;S&lt;/strong&gt;&lt;strong&gt;croll down&lt;/strong&gt; until you see the following lines:&lt;br /&gt;    &lt;br /&gt;    &lt;span style="font-family: courier new; color: #000000;"&gt;'******************************************************************************&lt;br /&gt;    '* Sub:     SendEmail&lt;br /&gt;    '*&lt;br /&gt;    '* Purpose: Uses CDO to send an email message&lt;br /&gt;    '*&lt;br /&gt;    '* Input:   strSubject      subject text &lt;br /&gt;    '*          strBody         main body of the email&lt;br /&gt;    '*          strLogFileName  file name of the log file to attach to the email&lt;br /&gt;    '* Output:  None&lt;br /&gt;    '*&lt;br /&gt;    '******************************************************************************&lt;br /&gt;    Function SendEmail(ByRef strSubject, _&lt;br /&gt;                       ByRef strBody,    _&lt;br /&gt;                       ByRef strLogFileName)&lt;br /&gt;        Dim objMessage &lt;br /&gt;    &lt;br /&gt;        Set objMessage = CreateObject("CDO.Message") &lt;br /&gt;    &lt;br /&gt;        objMessage.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/sendusing")=2&lt;br /&gt;        objMessage.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpserver")="smtp.mydomain.com"&lt;br /&gt;        objMessage.Configuration.Fields.Update&lt;br /&gt;    &lt;br /&gt;        objMessage.Subject = strSubject&lt;br /&gt;        objMessage.From = "from@mydomain.com" &lt;br /&gt;        objMessage.To = "to@mydomain.com" &lt;br /&gt;        objMessage.TextBody = strBody&lt;br /&gt;        objMessage.AddAttachment strLogFileName&lt;br /&gt;        objMessage.Send&lt;br /&gt;        Set objMessage = nothing&lt;br /&gt;    End Function&lt;br /&gt;    &lt;/span&gt;&lt;br /&gt;    The function &lt;strong&gt;'SendEmail' &lt;/strong&gt;contains all the source lines to send the email notification. &lt;br /&gt;     &lt;br /&gt;      &lt;/li&gt;    &lt;li&gt;Replace the following line:&lt;br /&gt;    &lt;br /&gt;    &lt;span style="font-family: courier new; color: #000000;"&gt;objMessage.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpserver")="smtp.mydomain.com"&lt;br /&gt;    &lt;br /&gt;    With:&lt;br /&gt;    &lt;br /&gt;    &lt;/span&gt;&lt;span style="font-family: courier new; color: #000000;"&gt;&lt;span class="color01"&gt;objMessage.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpserver")="smtp.gmail.com"&lt;/span&gt;&lt;br /&gt;    objMessage.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpserverport")=465&lt;span class="color01"&gt;&lt;br /&gt;    objMessage.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate")=1&lt;/span&gt;&lt;br /&gt;    objMessage.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/sendusername")="user@gmail.com"&lt;span class="color01"&gt;&lt;br /&gt;    objMessage.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/sendpassword")="gmail password"&lt;/span&gt;&lt;/span&gt;&lt;span class="Courier" style="font-family: courier new; color: #000000;"&gt;&lt;br /&gt;    objMessage.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpusessl")=1&lt;/span&gt;&lt;br /&gt;         &lt;br /&gt;    &lt;span class="Times"&gt;&lt;strong&gt;&lt;span class="color11"&gt;smtpauthenticate&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt; options are:  &lt;span class="Times"&gt;0 - No Authentication, 1 - Basic  Authentication or 2 - NTLM  authentication (Secure Password  Authentication)&lt;/span&gt;&lt;br /&gt;     &lt;/li&gt;&lt;/ol&gt;&lt;strong&gt;That's it!&lt;/strong&gt;. Click 'File' &amp;gt; 'Save' in notepad. You can run andschedule VBScript source files just like your XML backup definitions. &lt;br /&gt;&lt;br /&gt;&lt;table cellspacing="0" class="whs20" style="width: 100%; height: 50px;"&gt;    &lt;thead&gt;    &lt;/thead&gt;    &lt;col class="whs21" /&gt; &lt;col class="whs22" /&gt;    &lt;tbody&gt;        &lt;tr style="vertical-align: top;"&gt;            &lt;td class="whs23" style="vertical-align: middle;"&gt;            &lt;p&gt;&lt;img alt="" src="http://www.macrium.com/webhelp/image3.gif" style="width: 36px; height: 37px;" /&gt;&lt;/p&gt;            &lt;/td&gt;            &lt;td style="background-color: #e5e5e5;" class="whs24"&gt;            &lt;p&gt;&lt;span class="Times"&gt;&lt;strong&gt;&lt;span class="color11"&gt;&lt;br /&gt;            &lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;Make sure you use a valid GMail account and password for the 'sendusername' and 'sendpassword' lines.&lt;/p&gt;            &lt;/td&gt;        &lt;/tr&gt;    &lt;/tbody&gt;&lt;/table&gt;&lt;ul&gt;&lt;/ul&gt;&lt;span class="Courier"&gt;&lt;br /&gt;&lt;p&gt;&lt;span xmlns="http://www.w3.org/1999/xhtml"&gt;&lt;strong&gt;&lt;hr /&gt;&lt;/strong&gt; &lt;/span&gt;&lt;/p&gt;&lt;/span&gt;&lt;strong&gt;&lt;/strong&gt;</description><pubDate>Tue, 03 Aug 2010 01:06:56 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>How to create a bootable DVD with automatic restore</title><link>http://www.macrium.com/KB/Goto50053.aspx</link><description>&lt;a href="https://macrium.fogbugz.com/default.asp?W51#toc_5"&gt;&lt;span class="toc_text"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;p&gt; &lt;strong&gt;&lt;span style="font-size: 18px;"&gt;&lt;hr /&gt;&lt;/span&gt;  &lt;/strong&gt;Thisarticle explains how to create a Macrium Reflect image of your PC thatcan be restored from a single DVD by simply booting the DVD. This isuseful for quick, uncomplicated restores and enables simple deploymentof a 'master' image to multiple similar PCs. &lt;/p&gt;&lt;table cellspacing="0" class="whs20"&gt;    &lt;col class="whs21" /&gt; &lt;col class="whs22" /&gt;    &lt;tbody&gt;        &lt;tr style="vertical-align: top;"&gt;            &lt;td class="whs23" style="vertical-align: middle;"&gt;            &lt;p&gt;&lt;img alt="" src="http://www.macrium.com/webhelp/image3.gif" style="width: 36px; height: 37px;" /&gt;&lt;/p&gt;            &lt;/td&gt;            &lt;td style="background-color: #e5e5e5;" class="whs24"&gt;            &lt;p&gt; Image deployment to multiple PCs requires a deployment license for each PC deployed. Please see &lt;a href="https://www.regnow.com/softsell/nph-softsell.cgi?item=17447-16&amp;amp;ss_long_order=true" fc_href="https://www.regnow.com/softsell/nph-softsell.cgi?item=17447-16&amp;amp;ss_long_order=true"&gt;here&lt;/a&gt; for information on puchasing deployment licenses&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;/p&gt;            &lt;/td&gt;        &lt;/tr&gt;    &lt;/tbody&gt;&lt;/table&gt;&lt;p class="whs25"&gt; &lt;/p&gt;&lt;table cellspacing="0" class="whs20"&gt;    &lt;col class="whs21" /&gt; &lt;col class="whs22" /&gt;    &lt;tbody&gt;        &lt;tr style="vertical-align: top;"&gt;            &lt;td class="whs23" style="vertical-align: middle;"&gt;            &lt;p&gt;&lt;img alt="" src="http://www.macrium.com/webhelp/image3.gif" style="width: 36px; height: 37px;" /&gt;&lt;/p&gt;            &lt;/td&gt;            &lt;td style="background-color: #e5e5e5;" class="whs24"&gt;            &lt;p&gt;            Your disk image must be able to fit on a single DVD. This means 4.7GB            or less for a DVD+/-R or 8.5GB or less for a DVD+R DL (Dual layer). It            isn't possible to boot from Blu-Ray media.&lt;/p&gt;            &lt;/td&gt;        &lt;/tr&gt;    &lt;/tbody&gt;&lt;/table&gt;&lt;p class="whs25"&gt; &lt;/p&gt;&lt;hr class="whs1" /&gt;&lt;h2&gt;&lt;a name="toc_1" class="toc_anchor"&gt;Prerequisites&lt;/a&gt;&lt;/h2&gt;&lt;h3&gt;&lt;a name="toc_2" class="toc_anchor"&gt;Macrium Reflect&lt;/a&gt;&lt;/h3&gt;&lt;p&gt;Installor update to the latest version of Macrium Reflect. You must have thepurchased edition of Macrium Reflect installed on your PC. To check forthe latest version take the 'Help' &amp;gt; 'Check for updates..' menuoption.&lt;/p&gt;&lt;h3&gt;&lt;a name="toc_3" class="toc_anchor"&gt;Windows PE&lt;br /&gt;&lt;/a&gt;&lt;/h3&gt;&lt;p&gt;Installor update to the latest version of Windows PE. Windows PE is onlyavailable with the purchased edition of Macrium Reflect. For informationon installing Windows PE please see this knowledge base article: &lt;a href="http://www.macrium.com/KB/KnowledgebaseArticle50045.aspx" fc_href="http://www.macrium.com/KB/KnowledgebaseArticle50045.aspx"&gt;http://www.macrium.com/KB/KnowledgebaseArticle50045.aspx&lt;/a&gt;.If you already have Windows PE installed then make sure you are runningthe latest version by clicking the 'Updates' button in the Rescue CDburn wizard. &lt;/p&gt;&lt;h3&gt;&lt;a name="toc_4" class="toc_anchor"&gt;DiskRestore&lt;br /&gt;&lt;/a&gt;&lt;/h3&gt;&lt;p&gt;DiskRestoreis a free utility that will restore Macrium Reflect disk images fromWindows PE without any user interaction. You need to download andinstall 'DiskRestore.msi' from here: &lt;a href="http://updates.macrium.com/reflect/utilities/diskrestore.msi" fc_href="http://updates.macrium.com/reflect/utilities/diskrestore.msi"&gt;http://updates.macrium.com/reflect/utilities/diskrestore.msi&lt;/a&gt; . More information on  DiskRestore  can be found in this knowledge base article: &lt;a href="http://www.macrium.com/KB/KnowledgebaseArticle50004.aspx" fc_href="http://www.macrium.com/KB/KnowledgebaseArticle50004.aspx"&gt;http://www.macrium.com/KB/KnowledgebaseArticle50004.aspx&lt;/a&gt; &lt;/p&gt;&lt;strong&gt;&lt;span style="font-size: 18px;"&gt;&lt;hr /&gt;&lt;/span&gt;  &lt;/strong&gt;&lt;h2&gt;&lt;a name="toc_5" class="toc_anchor"&gt;The procedure&lt;br /&gt;&lt;/a&gt;&lt;/h2&gt;&lt;ol&gt;    &lt;li&gt;&lt;a href="http://www.macrium.com/KB/KnowledgebaseArticle50039.aspx" fc_href="http://www.macrium.com/KB/KnowledgebaseArticle50039.aspx"&gt;Create a disk image of your primary disk partition(s)&lt;/a&gt; and save it to a local hard drive or network share. &lt;br /&gt;    &lt;br /&gt;    Make sure that you have set the maximum file size in the backup wizard advanced settings to be &lt;strong&gt;4GB&lt;/strong&gt;    because the file system on the DVD image that we are creating can only    support a maximum single file size of 4GB. If your image file is greater    than 4GB then it will be split into multiple files. &lt;br /&gt;    &lt;br /&gt;    &lt;img alt="" src="http://www.macrium.com/KB/Uploads/Images/filesize.jpg" /&gt;&lt;br /&gt;    &lt;br /&gt;    &lt;br /&gt;    &lt;br /&gt;    &lt;table cellspacing="0" class="whs20"&gt;        &lt;col class="whs21" /&gt; &lt;col class="whs22" /&gt;        &lt;tbody&gt;            &lt;tr style="vertical-align: top;"&gt;                &lt;td class="whs23" style="vertical-align: middle;"&gt;                &lt;p&gt;&lt;img alt="" src="http://www.macrium.com/webhelp/image3.gif" style="width: 36px; height: 37px;" /&gt;&lt;/p&gt;                &lt;/td&gt;                &lt;td class="whs24" style="background-color: #e5e5e5;"&gt;                &lt;p&gt;If you don't want Macrium Reflect installed when you create the image then &lt;strong&gt;uninstall Macrium Reflect&lt;/strong&gt;, boot your PC with the Windows PE  rescue CD and create the disk image from there.&lt;br /&gt;                &lt;br /&gt;                This                is important if you are using this technique  to deploy Windows to                multiple similar PCs. If Macrium Reflect is also  restored to each PC                then you will require a license for Macrium Reflect  for each restored                PC.&lt;/p&gt;                &lt;/td&gt;            &lt;/tr&gt;        &lt;/tbody&gt;    &lt;/table&gt;    &lt;p class="whs25"&gt; &lt;/p&gt;    &lt;/li&gt;    &lt;li&gt;&lt;strong&gt;Start 'DiskRestore'&lt;/strong&gt; and select the image file just created. By default, your system disk will be selected as the target disk. &lt;br /&gt;    &lt;br /&gt;    &lt;img alt="" src="http://www.macrium.com/KB/Uploads/Images/diskrestore15.jpg" /&gt;&lt;br /&gt;     &lt;br /&gt;      &lt;/li&gt;    &lt;li&gt;&lt;strong&gt;Click&lt;/strong&gt;&lt;strong&gt; 'Restore'.&lt;br /&gt;     &lt;br /&gt;    &lt;/strong&gt;&lt;/li&gt;    &lt;li&gt;It won't be possible to restore the image while Windows is running so you'll receive the following dialog box:&lt;br /&gt;    &lt;br /&gt;    &lt;img alt="" src="http://www.macrium.com/KB/Uploads/Images/diskrestore11A.jpg" /&gt;&lt;br /&gt;    &lt;br /&gt;    &lt;br /&gt;    &lt;strong&gt;Select 'Unattended mode'&lt;/strong&gt;    if you want the restore to run automatically when you boot from the    DVD. Leaving it un-checked will allow you to confirm your selections    before clicking 'Restore' &lt;br /&gt;    &lt;br /&gt;    De-select the &lt;strong&gt;'Automatic boot' &lt;/strong&gt;option if it's enabled.&lt;br /&gt;    &lt;br /&gt;    Several files will be added to folder 'c:\boot\macrium'.&lt;br /&gt;     &lt;/li&gt;    &lt;li&gt;&lt;strong&gt;Copy the image file(s)&lt;/strong&gt; created in step 1 to folder 'c:\boot\macrium\temp'. You will need to create the folder first.&lt;br /&gt;     &lt;/li&gt;    &lt;li&gt;&lt;strong&gt;Edit the file&lt;/strong&gt; 'c:\boot\macrium\pestartup.ini' (or 'pestartupx64.ini for Windows PE 64 bit) in notepad.&lt;br /&gt;    &lt;br /&gt;    Change:&lt;br /&gt;    &lt;br /&gt;    &lt;span class="Courier"&gt;[COPY]&lt;br /&gt;    FILE1=diskrestorex64.exe&lt;br /&gt;    [RUN]&lt;br /&gt;    COMMAND=diskrestorex64 "X:\2B0657890DD7DF82-00-00.mrimg" --password "" --sourceid 00018D47 --targetid 00018D47  -g -u &lt;/span&gt;&lt;br /&gt;    &lt;br /&gt;    To:&lt;br /&gt;    &lt;br /&gt;    &lt;span class="Courier"&gt;[COPY]&lt;br /&gt;    FILE1=diskrestorex64.exe&lt;br /&gt;    [RUN]&lt;br /&gt;    COMMAND=diskrestorex64 "&lt;strong&gt;D:\temp\&lt;/strong&gt;2B0657890DD7DF82-00-00.mrimg" --password "" --sourceid 00018D47 &lt;strong&gt;--targetnum 0&lt;/strong&gt; -g -u &lt;strong&gt;--reboot&lt;/strong&gt;&lt;br /&gt;    &lt;br /&gt;    &lt;strong&gt;[OPTIONS]&lt;br /&gt;    runfromCD=1&lt;/strong&gt;&lt;/span&gt;&lt;br /&gt;    &lt;br /&gt;    &lt;strong&gt;Bold text&lt;/strong&gt; shows additions and changes.&lt;br /&gt;    &lt;br /&gt;    i)   The path to the ima&lt;span class="Courier"&gt;ge&lt;span class="Times"&gt; file should be changed to the drive letter of your DVD reader with sub-folder '\temp'&lt;/span&gt;&lt;br /&gt;    &lt;br /&gt;    &lt;span class="Times"&gt;ii)  If you intend to restore to a different disk then you should also change 'targetid' to 'targetnum'&lt;/span&gt;&lt;span class="Times"&gt; followed by the disk number as shown in the Disk Management console, otherwise leave the option as '--targetid'&lt;br /&gt;    &lt;br /&gt;    iii) &lt;/span&gt;&lt;/span&gt;If you want the PC to automatically reboot after restore then add &lt;span class="Courier"&gt;--reboot &lt;/span&gt;to the end&lt;br /&gt;    &lt;br /&gt;    iv) Finally, add &lt;strong&gt;two &lt;/strong&gt;lines,  '[OPTIONS]' + 'runfromCD=1' to direct DiskRestore to load these parameters from the DVD&lt;br /&gt;    &lt;br /&gt;    &lt;strong&gt;Save and close &lt;/strong&gt;the file.&lt;br /&gt;     &lt;br /&gt;      &lt;/li&gt;    &lt;li&gt;Return    to Macrium Reflect and take the option to burn a Windows PE rescue CD.     You can either create an .ISO image or burn directly to a DVD.&lt;br /&gt;     &lt;br /&gt;    After burning your DVD you should move/delete the image file(s) from the temp folder.&lt;/li&gt;&lt;/ol&gt;&lt;p&gt;&lt;strong&gt;That's it! &lt;/strong&gt;Oncebooted, the new DVD will automatically start DiskRestore and will restore your system to the exact state it was at the time you createdthe image.&lt;/p&gt;&lt;p&gt;    &lt;/p&gt;&lt;hr class="whs1" /&gt;&lt;h2&gt;&lt;a name="toc_1" class="toc_anchor"&gt;&lt;/a&gt;&lt;/h2&gt;&lt;p&gt;&lt;/p&gt;</description><pubDate>Wed, 28 Jul 2010 15:23:09 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>Create a bootable Windows PE USB stick</title><link>http://www.macrium.com/KB/Goto50025.aspx</link><description>&lt;hr /&gt;&lt;p&gt;&lt;strong&gt;&lt;span style="font-size: 24px;"&gt;&lt;/span&gt;&lt;/strong&gt;In this tutorial I'll show you the simple steps required to create a USB stick that boots into the Macrium Reflect Windows PE Rescue Environment.&lt;br /&gt;&lt;br /&gt;Make sure your USB stick is formatted as FAT32 or NTFS. &lt;/p&gt;&lt;ol&gt;    &lt;li&gt;&lt;strong&gt;Open ‘My Computer’, right click&lt;/strong&gt; on your USB drive and &lt;strong&gt;select properties&lt;/strong&gt;&lt;/li&gt;    &lt;li&gt;Make sure that FAT32 or NTFS is selected as the file system. It’s best to leave the &lt;strong&gt;‘Quick Format’ option un-checked&lt;/strong&gt;.&lt;strong&gt;&lt;br /&gt;    &lt;br /&gt;    Note:&lt;/strong&gt; If you receive a message saying ‘Windows was unable to complete the format’ then in some cases the format has actually finished and this message can safely be ignored.&lt;/li&gt;    &lt;li&gt;&lt;strong&gt;Use DiskPart&lt;/strong&gt; to set the partition on the USB drive 'Active'.&lt;br /&gt;    &lt;br /&gt;    From a command prompt type:&lt;span style="font-family: courier new;"&gt;&lt;br /&gt;    &lt;br /&gt;    DiskPart&lt;br /&gt;    Select Disk n&lt;br /&gt;    Select partition 1&lt;br /&gt;    Active&lt;br /&gt;    Exit&lt;br /&gt;    &lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;&lt;strong&gt;&lt;span style="font-size: 18px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;&lt;hr /&gt;&lt;strong&gt;&lt;span style="font-size: 18px;"&gt;Install the WindowsPE Component&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;We need to create an image of the bootable CD so we can transfer the contents to the USB stick.&lt;br /&gt; &lt;ol&gt;    &lt;li&gt;Start Reflect, &lt;strong&gt;take the ‘Other Tasks’ menu option&lt;/strong&gt; and  &lt;strong&gt;select ‘Create a bootable Rescue CD’&lt;/strong&gt;   The wizard opens and In the wizard window, &lt;strong&gt;select ‘Windows PE 2.0'&lt;/strong&gt; and &lt;strong&gt;click ‘Next’&lt;/strong&gt;.&lt;br /&gt;    &lt;br /&gt;    &lt;div style="text-align: center;"&gt;&lt;img alt="" src="http://www.macrium.com/blog/content/binary/PE1startwizard.jpg" /&gt;&lt;br /&gt;    &lt;br /&gt;    &lt;/div&gt;    &lt;/li&gt;    &lt;li&gt;    The Windows PE component isn't supplied with the Macrium Reflect installer and is an additional 100MB+ download.  Make sure you are connected to the Internet, and &lt;strong&gt;click ‘ OK’&lt;/strong&gt;.&lt;br /&gt;    &lt;br /&gt;    &lt;div style="text-align: center;"&gt;&lt;img alt="" src="http://www.macrium.com/blog/content/binary/PE2preparedownload.jpg" /&gt;&lt;br /&gt;    &lt;/div&gt;    &lt;strong&gt;&lt;br /&gt;    Note:&lt;/strong&gt; To ensure that Reflect is not blocked by a firewall you may need to add &lt;a href="http://www.macrium.com/"&gt;www.macrium.com&lt;/a&gt; to your firewall allowed list,&lt;br /&gt;    &lt;br /&gt;    If you receive the following dialog then you have already downloaded the Windows PE installer. Somewhere you will have a file WinPEInstall.exe (32 bit version) or WinPEInstallx64.exe (64 bit version) depending where you saved it.  Running this executable will install Windows PE.  To reinstall, double click the existing  WinPEInstall... file. &lt;br /&gt;    &lt;br /&gt;    &lt;div style="text-align: center;"&gt;&lt;img alt="" src="http://www.macrium.com/blog/content/binary/PE3downloadalready.jpg" /&gt;&lt;br /&gt;    &lt;/div&gt;    &lt;strong&gt;&lt;br /&gt;    Note:&lt;/strong&gt; You only get one download as each copy requires a license from Microsoft.  You can order another copy by clicking on the 'Purchase download' link.&lt;br /&gt;      &lt;/li&gt;    &lt;li&gt;In the next window you select where you are going to save your download.  You may want to create a new folder titled ‘Reflect Download’ or  ‘Windows PE Download’.  The folder ought to be in a location where you can easily find it.   &lt;strong&gt;Click ‘Save’&lt;/strong&gt;.&lt;br /&gt;    &lt;br /&gt;    &lt;div style="text-align: center;"&gt;&lt;img alt="" src="http://www.macrium.com/blog/content/binary/PE4downloadlocation.jpg" /&gt;&lt;br /&gt;     &lt;br /&gt;    &lt;/div&gt;    &lt;/li&gt;    &lt;li&gt;    After downloading the installer will automatically start....’.&lt;br /&gt;     &lt;br /&gt;    &lt;br /&gt;    &lt;div style="text-align: center;"&gt;&lt;img alt="" src="http://www.macrium.com/blog/content/binary/PE5download.jpg" /&gt;&lt;br /&gt;    &lt;/div&gt;    &lt;br /&gt;    &lt;div style="text-align: center;"&gt;&lt;img alt="" src="http://www.macrium.com/blog/content/binary/PE7componentinstalling.jpg" /&gt;&lt;br /&gt;     &lt;br /&gt;    &lt;/div&gt;    &lt;/li&gt;    &lt;li&gt;    After the WindowsPE component has installed &lt;strong&gt;close down Marcium Reflect&lt;/strong&gt; and &lt;strong&gt;copy the contents of 'c:\boot\macrium'&lt;/strong&gt; to the &lt;strong&gt;root of the USB stick&lt;/strong&gt;. &lt;br /&gt;    &lt;em&gt;&lt;br /&gt;    If you cannot see the directory then please &lt;strong&gt;click 'start' &lt;/strong&gt;then &lt;strong&gt;click run&lt;/strong&gt;, in the box type  &lt;strong&gt;'c:\boot\macrium'  &lt;/strong&gt;(without ')and &lt;strong&gt;click 'OK'&lt;/strong&gt; This should open a new window with the contents that you need.&lt;/em&gt;&lt;br /&gt;    &lt;br /&gt;    &lt;strong&gt;Note:&lt;/strong&gt; The location of '\boot\macrium' might be on a drive other than 'c'.&lt;/li&gt;&lt;/ol&gt;&lt;p&gt;&lt;br /&gt;&lt;em&gt;That's it!&lt;/em&gt; You should now have a bootable USB copy of Windows PE Rescue Environment&lt;/p&gt;</description><pubDate>Mon, 14 Jun 2010 13:56:09 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>Macrium Reflect DiskRestore</title><link>http://www.macrium.com/KB/Goto50004.aspx</link><description>&lt;hr /&gt;&lt;p&gt;DiskRestore is a utility to quickly restore Macrium Reflect disk images. DiskRestore provides the following benefits over the conventional Macrium Reflect restore process:&lt;/p&gt;&lt;ul&gt;    &lt;li&gt;Multiple partitions (whole disks) can be restored at the same time &lt;/li&gt;    &lt;li&gt;Partition placement is exactly the same as the original imaged disk. &lt;/li&gt;    &lt;li&gt;Disks can be restored with a few mouse clicks. &lt;/li&gt;    &lt;li&gt;Windows PE integration enables automatic/unattended restores. &lt;/li&gt;&lt;/ul&gt;&lt;p&gt;The normal Macrium Reflect restore process is a partition based restore. This enables control over partition size and placement. This flexibility comes at a cost and the restore wizard can seem overly complex for some restore tasks, plus you are restricted to restoring a single partition at a time.  With DiskRestore you simply select the partitions you want to restore and click 'Restore'.   &lt;/p&gt;&lt;strong&gt;&lt;span style="font-size: 18px;"&gt;&lt;hr /&gt;&lt;p&gt;&lt;span&gt;  Get DiskRestore&lt;/span&gt;&lt;/p&gt;&lt;/span&gt;&lt;p&gt; &lt;/p&gt;&lt;/strong&gt;&lt;p&gt;DiskRestore .msi installer. This is required to run in Windows and integrate with Windows PE for unattended restores - &lt;a class="ApplyClass" href="http://www.macrium.com/blog/ct.ashx?id=3cd08e1a-a84a-4675-b47f-993d591500b8&amp;amp;url=http%3a%2f%2fupdates.macrium.com%2freflect%2futilities%2fdiskrestore.msi"&gt;download&lt;/a&gt;&lt;/p&gt;&lt;p&gt;DiskRestore Executable for BartPE  - &lt;a href="http://www.macrium.com/blog/ct.ashx?id=3cd08e1a-a84a-4675-b47f-993d591500b8&amp;amp;url=http%3a%2f%2fupdates.macrium.com%2freflect%2futilities%2fdiskrestore.exe"&gt;download&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Note:&lt;/strong&gt; To run DiskRestore &lt;em&gt;directly &lt;/em&gt;from the Windows PErescue CD just take the 'File' &amp;gt; 'Disk Restore' menu option inWindows PE; there's nothing to download. You must be running Windows PEv2.1.2733 or higher.&lt;a href="http://www.macrium.com/blog/ct.ashx?id=3cd08e1a-a84a-4675-b47f-993d591500b8&amp;amp;url=http%3a%2f%2fupdates.macrium.com%2freflect%2futilities%2fdiskrestorex64.exe"&gt;&lt;br /&gt;&lt;br /&gt;&lt;img alt="" src="http://www.macrium.com/KB/Uploads/Images/diskrestoremenu.jpg" /&gt;&lt;br /&gt;&lt;/a&gt;&lt;/p&gt;&lt;span style="font-size: 18px;"&gt;&lt;strong&gt; &lt;hr /&gt;&lt;br /&gt;How do I use it?&lt;br /&gt;&lt;br /&gt;&lt;/strong&gt;&lt;/span&gt;&lt;ol&gt;    &lt;li&gt;&lt;strong&gt;Start DiskRestore&lt;/strong&gt; and &lt;strong&gt;click the '...' browse button&lt;/strong&gt; to select your image file.&lt;br /&gt;    &lt;br /&gt;    By default all partitions included in the image will be selected and the target disk will also be the same as the disk originally imaged.&lt;br /&gt;    &lt;br /&gt;    &lt;br /&gt;    &lt;div style="text-align: center;"&gt;&lt;img alt="" src="http://www.macrium.com/blog/content/binary/diskrestore10.jpg" style="border: 0px solid;" /&gt;&lt;br /&gt;    &lt;/div&gt;    &lt;br /&gt;    In this example we are restoring a Windows 7 system. Both the 'System Reserved' and C partitions are selected.&lt;br /&gt;    &lt;br /&gt;    &lt;strong&gt;Click 'Restore'&lt;/strong&gt; to start the restore process. &lt;/li&gt;    &lt;li&gt;If your restore target disk cannot be *overwritten then you will receive the following dialog, if not then the restore will begin.&lt;br /&gt;    &lt;br /&gt;    *If a disk partition contains system files then the disk cannot be dismounted and restored. In this example we are restoring both the 'System' and 'Boot' partitions for Windows 7. &lt;br /&gt;    &lt;br /&gt;    &lt;br /&gt;    &lt;div style="text-align: center;"&gt; &lt;img alt="" src="http://www.macrium.com/blog/content/binary/diskrestore11.jpg" style="border: 0px solid;" /&gt;&lt;br /&gt;    &lt;/div&gt;    &lt;strong&gt;&lt;br /&gt;    Automatic Boot&lt;/strong&gt; - This option is only available if you have installed the Macrium Reflect Windows PE component and enabled the Windows boot menu. If selected, you only have to restart your computer and Windows PE will automatically boot.&lt;strong&gt;&lt;br /&gt;    &lt;br /&gt;    Unattended Mode&lt;/strong&gt; - If selected, the restore process will begin and complete automatically. The main use of this feature is to enable recovery of remote systems where you don't have physical access to the PC.&lt;strong&gt;&lt;br /&gt;    &lt;br /&gt;    Click "Run from Windows PE".&lt;br /&gt;    &lt;br /&gt;    &lt;br /&gt;    &lt;/strong&gt;&lt;/li&gt;    &lt;li&gt;If your image file is stored on a network share then you will receive the following dialog. Enter your network logon credentials so that Windows PE can access and read the share.  &lt;br /&gt;    &lt;br /&gt;    &lt;br /&gt;    &lt;div style="text-align: center;"&gt;&lt;img alt="" src="http://www.macrium.com/blog/content/binary/diskrestore12A.jpg" style="border: 0px solid;" /&gt;&lt;br /&gt;    &lt;/div&gt;    &lt;strong&gt;&lt;br /&gt;    Click 'OK' to continue.&lt;br /&gt;    &lt;/strong&gt;&lt;br /&gt;    You will now receive a restart dialog.&lt;br /&gt;    &lt;br /&gt;    &lt;br /&gt;    &lt;div style="text-align: center;"&gt; &lt;img alt="" src="http://www.macrium.com/blog/content/binary/diskrestore13.jpg" style="border: 0px solid;" /&gt;&lt;br /&gt;    &lt;/div&gt;    &lt;strong&gt;&lt;br /&gt;    Click 'Restart Now'&lt;/strong&gt; to initiate the restore process. &lt;/li&gt;&lt;/ol&gt;&lt;p&gt;&lt;strong&gt;Note:&lt;/strong&gt; To integrate with Windows PE you must have purchased Macrium Reflect and installed v2.1.2525 (or later) of the Windows PE rescue CD .&lt;/p&gt;&lt;strong&gt;&lt;span style="font-size: 18px;"&gt;&lt;hr /&gt;&lt;span xmlns="http://www.w3.org/1999/xhtml"&gt;&lt;br /&gt;Command line options&lt;/span&gt;&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;DiskRestore can be run from a batch file by using the following command line  options:&lt;p&gt;Usage DiskRestore &amp;lt;imagefile&amp;gt; [options]:&lt;/p&gt;&lt;p&gt;Generic options:&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;  -h [ --help ]         produce help message&lt;br /&gt;  -g [ --GUI ]          display the the GUI interface&lt;br /&gt;  -u [ --Unattended ]   when combined with GUI will start and complete the restore with no user interaction&lt;br /&gt;  --reboot              reboot after restore&lt;/span&gt;&lt;/p&gt;&lt;p&gt;Operation options:&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;  -r [ --restore ]      restores an image to a disk&lt;br /&gt;  -d [ --describe ]     describes disks and partitions in an image file&lt;/span&gt;&lt;/p&gt;&lt;p&gt;File options:&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;  --imagefile arg       full path and name of the image file&lt;br /&gt;  --password arg        password protecting the image file&lt;br /&gt;  --netuser arg         network share user name&lt;br /&gt;  --netpass arg         network share password&lt;/span&gt;&lt;/p&gt;&lt;p&gt;Restore options:&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;  --sourcenum arg        source *disk number [default 1st disk in image]&lt;br /&gt;  --sourceid arg         souce disk identifier [default 1st disk in image]&lt;br /&gt;  -p [ --partition ]     arg list of partitions to restore, e.g. -p 1 -p 2   [default - all]&lt;br /&gt;  --targetnum arg        target *disk number&lt;br /&gt;  --targetid arg         target disk identifier&lt;br /&gt;  -v [ --verify ]        verify image before restoring&lt;br /&gt;  -e [ --continue ]      continue on errors&lt;/span&gt;&lt;/p&gt;&lt;p&gt;*Note: Disk Number refers to the number displayed in the Windows Disk Management console and the DiskPart utility not the number that is displayed in Macrium Reflect. Macrium Reflect disks are numbered from 1 DiskRestore numbers the same disks from 0. &lt;/p&gt;&lt;p&gt;Examples:&lt;/p&gt;&lt;p&gt;&lt;strong&gt;To display the image information of file 'e:\80794226B5928CAE-00-00.mrimg'  and information on locally attahed disks&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;diskrestore.exe  "e:\80794226B5928CAE-00-00.mrimg" -d&lt;/p&gt;&lt;p&gt;Example output:&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: courier new;"&gt;File name:   e:\80794226B5928CAE-00-00.mrimg&lt;br /&gt;Backup Date: 17/01/2010 10:58&lt;br /&gt;Image ID:    80794226B5928CAE&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: courier new;"&gt;Disk 5 [FF346F5E] - Samsung  S2 Portable  &amp;lt;596.162 GB&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: courier new;"&gt;  Drive     Type     Start       End   Size      Used      Free&lt;br /&gt; 1 [M:]  Primary      1024 625130495 174.00 MB 907.12 MB  3.284 GB   &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: courier new;"&gt;Local Disks&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: courier new;"&gt;Disk 0 [000139F3] - ST3500320AS SD15  &amp;lt;465.762 GB&amp;gt;&lt;br /&gt;Disk 1 [4C832380] - SAMSUNG HD501LJ CR100-11  &amp;lt;465.762 GB&amp;gt;&lt;br /&gt;Disk 2 [0000F9D8] - SAMSUNG HD501LJ CR100-11  &amp;lt;465.762 GB&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;To restore all the partitions in image file 'e:\80794226B5928CAE-00-00.mrimg'&lt;/strong&gt; &lt;/p&gt;&lt;p&gt;&lt;span style="font-family: courier new;"&gt;diskrestore.exe  "e:\80794226B5928CAE-00-00.mrimg" -r&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;To restore the first partition in image file 'e:\80794226B5928CAE-00-00.mrimg'&lt;/strong&gt; &lt;/p&gt;&lt;p&gt;&lt;span style="font-family: courier new;"&gt;diskrestore.exe  "e:\80794226B5928CAE-00-00.mrimg" -r -p 1&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;To restore all the partitions in image file 'e:\80794226B5928CAE-00-00.mrimg' to a different disk with Disk ID '0000F9D8'&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: courier new;"&gt;diskrestore.exe  "e:\80794226B5928CAE-00-00.mrimg" -r --targetid 0000F9D8&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;&lt;span&gt; &lt;/span&gt;&lt;/p&gt;&lt;hr /&gt;&lt;/span&gt;&lt;/p&gt;&lt;strong&gt;&lt;span style="font-size: 18px;"&gt;Troubleshooting&lt;/span&gt;&lt;/strong&gt;&lt;ol&gt;    &lt;li&gt;The image file is part of a backup set...&lt;br /&gt;    &lt;br /&gt;    &lt;div style="text-align: center;"&gt;&lt;img alt="" src="http://www.macrium.com/blog/content/binary/diskrestore4.jpg" style="border: 0px solid;" /&gt;&lt;br /&gt;    &lt;/div&gt;    &lt;br /&gt;    It's only possible to use DiskRestore if all parts of the image are in the same directory. If you have saved an image to multiple DVDs then copy the contents of each DVD to a single directory and try again. &lt;/li&gt;    &lt;li&gt;You are creating a clone disk...&lt;br /&gt;    &lt;br /&gt;    &lt;div style="text-align: center;"&gt; &lt;img alt="" src="http://www.macrium.com/blog/content/binary/diskrestore5.jpg" style="border: 0px solid;" /&gt;&lt;br /&gt;    &lt;/div&gt;    &lt;br /&gt;    You are restoring an image to another disk and the original is still attached to your PC.&lt;br /&gt;    &lt;br /&gt;    A restored image will update the unique Disk ID ( Disk Signature ) of the disk that is being restored to. This will result in duplicate IDs if the original disk is still attached. When Windows mounts the restored disk it will update the Disk ID to make it unique. For this reason the restored disk will not be mounted after the  restore process by DiskRestore.&lt;br /&gt;    &lt;br /&gt;    &lt;strong&gt;Note:&lt;/strong&gt; The Disk ID plays a crucial part in the Windows boot process and changing it will probably result in your OS being un-bootable. If a restored partition contains a Windows OS then you should remove the original disk before attempting to boot with the cloned disk attached. &lt;/li&gt;    &lt;li&gt;The target disk is too small...&lt;br /&gt;    &lt;br /&gt;    &lt;div style="text-align: center;"&gt; &lt;img alt="" src="http://www.macrium.com/blog/content/binary/diskrestore6.jpg" style="border: 0px solid;" /&gt;&lt;br /&gt;    &lt;/div&gt;    &lt;br /&gt;    The destination disk is too small to contain the partitions being restored. The restored partition(s) are placed in exactly the same location as the original. If the start and/or end of a partition is beyond the reported size of the destination disk then you will receive this error. &lt;/li&gt;    &lt;li&gt;Windows PE is not installed..&lt;br /&gt;    &lt;br /&gt;    &lt;div style="text-align: center;"&gt; &lt;img alt="" src="http://www.macrium.com/blog/content/binary/diskrestore8.jpg" style="border: 0px solid;" /&gt;&lt;br /&gt;    &lt;/div&gt;    &lt;br /&gt;    To use the automatic restore feature you must have purchased Macrium Reflect and installed the Windows PE component. &lt;/li&gt;    &lt;li&gt;The installed Windows PE version must be updated...&lt;br /&gt;    &lt;br /&gt;    &lt;div style="text-align: center;"&gt;&lt;img alt="" src="http://www.macrium.com/blog/content/binary/diskrestore7.jpg" style="border: 0px solid;" /&gt; &lt;br /&gt;    &lt;/div&gt;    &lt;br /&gt;    You must have Windows PE v2.1.2525 (or newer) installed to use the Windows PE automatic restore feature. Click the 'Updates' button in the Macrium Reflect CD burn wizard to update your installation. &lt;/li&gt;&lt;/ol&gt;&lt;p&gt;&lt;strong&gt;Note:&lt;/strong&gt; You can also manually run DiskRestore from BartPE or from an earlier version of Windows PE.  Just run DiskRestore once booted into the rescue environment and repeat the steps above to restore your image. &lt;/p&gt;&lt;hr /&gt;&lt;p&gt;  &lt;/p&gt;</description><pubDate>Mon, 29 Mar 2010 17:49:47 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>How to create a Virtual machine from a Macrium image backup</title><link>http://www.macrium.com/KB/Goto50005.aspx</link><description>&lt;hr /&gt;&lt;p&gt;&lt;strong&gt;&lt;span style="font-size: 24px;"&gt;&lt;/span&gt;&lt;/strong&gt;ImgToVhd is a utility that creates VHD files from Macrium backup images. These can then be used to create a bootable virtual machine facilitating quick access to a failed machine whose repair would be time consuming or not possible.&lt;br /&gt;&lt;br /&gt;We have created a utility, ImgToVHD to enable the conversion of a Macrium backup image file to VHD files (one per disk). The VHD file(s) can then be used as the storage component of virtual machines from Microsoft (Virtual PC and HyperV), VMWare and Oracle/Sun (Virtual Box).&lt;br /&gt;&lt;br /&gt;This enables a previously backed up machine to be reincarnated as a virtual machine. A significant use of this is to quickly regain access to a machine that has suffered a fatal hardware failure.&lt;/p&gt;&lt;p&gt;Please note that this is beta quality software. It is being released to the public for evaluation purposes only. No guarantees are made for its quality or fitness for purpose. Use is not recommended in a production environment.&lt;/p&gt;&lt;p&gt;Feedback is welcomed as this will help us improve the quality and utility of this tool and this blog post. Comments are currently enabled for this post - constructive comments will be helpful to both us and the other users of this tool.&lt;/p&gt;&lt;p&gt;Please take care to ensure that you are not breaking the terms on any licences by running a virtual machine from a backup image.&lt;br /&gt;&lt;br /&gt;  &lt;/p&gt;&lt;hr /&gt;&lt;p&gt;&lt;span style="font-size: 18px;"&gt;&lt;strong&gt;Get ImgTOVHD&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;You can download ImgToVHD from &lt;a href="http://www.macrium.com/blog/ct.ashx?id=6744f717-c34f-4391-804c-2aee9093a51b&amp;amp;url=http%3a%2f%2fupdates.macrium.com%2fReflect%2futilities%2fImgToVHD.msi" class="ApplyClass"&gt;here&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Invoke the downloaded msi as per any other installer. &lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;hr /&gt;&lt;p&gt;&lt;span style="font-size: 18px;"&gt;&lt;strong&gt;ImgTOVHD Usage&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;ImgToVHD offers both a GUI and a command line interface.&lt;/p&gt;&lt;p&gt;If you wish to use the command line interface, ImgToVHD --help will emit some instructions.&lt;br /&gt;&lt;br /&gt;The ImgToVHD user interface is straight forward.&lt;/p&gt;&lt;div style="text-align: center;"&gt;&lt;img alt="" src="http://www.macrium.com/blog/content/binary/ImgToVHD_init_screen.png" style="border: 0px solid;" /&gt;&lt;/div&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;Firstly, you will need an Macrium image file - a file and folder backup file will not work here. If you wish to create a bootable VM from scratch, and not just add a disk to an already bootable VM, then the image will need to contain an image of both the active and the windows system partition. Typically the system partition is also the active partition.&lt;br /&gt;&lt;br /&gt;You will need enough spare disk space to store the resulting VHD file. If you have selected all the partitions from the source image and the image is compressed, then the resulting VHD file size is likely to be rather larger than the source image as VHD files don't support compression and have a larger sparse granularity than the image files. Calculate the sum of the used space of the selected partitions and ensure that you have slightly more free space than this for the VHD file.&lt;br /&gt;&lt;br /&gt;Once you have selected a source image, a list of disks will be presented to you. Select from this, the one in which you will to convert to VHD and then you will be presented with a list of partitions. Select as many of these as you require.&lt;/p&gt;&lt;p&gt;There are three options that are best left unselected unless you understand the consequences.&lt;/p&gt;&lt;ol&gt;    &lt;li&gt;Remap partition table. In the case where not all the partitions are selected or backed up in the first case, this option only include those selected partitions in the partition table. This doesn't effect extended (logical) partitions. If you don't remap, partitions not included in the VHD creation or the original backup will appear as RAW in the disk management console. Remapping can prevent Windows XP from booting.&lt;/li&gt;    &lt;li&gt;    Reset disk ID. This will definitely result in a non-bootable VHD. It is useful only if mounting the VHD on the machine containing the original disk.&lt;/li&gt;    &lt;li&gt;    Continue on errors. If there are errors in the source image, and this is checked then the VHD creation process will continue. However, the resultant VHD file is guaranteed to have missing data. Dependent on the location of the errors, the image might or might not be usable.&lt;/li&gt;    &lt;li&gt;    Once the disk, partitions and options have been selected, hit convert. The conversion process will probably take a significant period of time due to the large volumes of data handled. Now would be a good time to consider a hot beverage of your choice.&lt;/li&gt;&lt;/ol&gt;&lt;p&gt;&lt;br /&gt;There are a number of caveats to be aware of. Of particular significance is the fact that the VM is likely to represent a significantly changed hardware environment from the original machine.&lt;/p&gt;&lt;ol&gt;    &lt;li&gt;    Windows OEM licensed installs, typical for retail machines delivered with the operating system preinstalled, do not allow a change in the motherboard.&lt;/li&gt;    &lt;li&gt;    The HAL and mass storage drivers might not match the those presented in the virtual environment. This may prevent Windows from booting. See here for further details on how to reconfigure Windows XP. Virtual Box enables some flexibility in the hardware environment so it can be made to match the original hardware.&lt;/li&gt;    &lt;li&gt;    Don't mount/attach this image on the original machine if you plan on booting from it as Windows will detect the duplicate disk ID and will change it, invalidating the BCD disk references.&lt;/li&gt;    &lt;li&gt;    The vhd file size must be limited to 127GB if you wish to use it with Virtual PC.&lt;/li&gt;    &lt;li&gt;    If the vhd is being created on a FAT32 filesystem, the creation process will fail if the created file size is greater than 4GB. This is a due to a limitation of FAT32; though the vhd specification supports splitting across multiple files, ImgToVHD doesn't currently support this feature.&lt;br /&gt;    &lt;br /&gt;      &lt;/li&gt;&lt;/ol&gt;&lt;p&gt;&lt;/p&gt;&lt;hr /&gt;&lt;p&gt;&lt;span style="font-size: 18px;"&gt;&lt;strong&gt;Using the vhd with Virtual Box&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;Virtual box comes in two flavours, an open source edition (missing RDP and USB support) and a commercial version that is free for evaluation or personal use.&lt;/p&gt;&lt;p&gt;Configuration is quite straightforward. Note the following instructions refer to version 3.14.&lt;/p&gt;&lt;p&gt;From the main window, hit new to create a new VM which will launch a wizard.&lt;/p&gt;&lt;p&gt;Select the OS to match the OS to be virtualised as below.&lt;/p&gt;&lt;p style="text-align: center;"&gt;&lt;img alt="" src="http://www.macrium.com/blog/content/binary/vbox.png" style="border: 0px solid;" /&gt;&lt;/p&gt;&lt;p&gt;The next wizard page (not shown for brevity) allows you to specify base memory. Chose a value that matches what is required for your virtualised OS, bearing in mind that there must be enough memory available on your host machine.&lt;/p&gt;&lt;p&gt;To specify the vhd you have created with ImgToVHD as a hard disk, you first have to add it to Virtual Box using the Virtual media manager by clicking on the yellow folder icon.&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;div style="text-align: center;"&gt;&lt;img alt="" src="http://www.macrium.com/blog/content/binary/vbox2.png" style="border: 0px solid;" /&gt;&lt;br /&gt;&lt;/div&gt;&lt;p&gt;&lt;br /&gt;Click the Add button and select your vhd file, the hit select. Repeat this process for each vhd file you have created.&lt;/p&gt;&lt;div style="text-align: center;"&gt;&lt;img alt="" src="http://www.macrium.com/blog/content/binary/vbox3.png" style="border: 0px solid;" /&gt;&lt;br /&gt;&lt;/div&gt;&lt;p&gt;&lt;br /&gt;All being well, you should now have a working VM. Hit the start button and your old machine should now appear in a window on your host.&lt;/p&gt;&lt;div style="text-align: center;"&gt;&lt;img alt="" src="http://www.macrium.com/blog/content/binary/vbox6.png" style="border: 0px solid;" /&gt;&lt;/div&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;If it fails to boot, then you might have a kernel/Hal/Mass storage driver miss-match issue.&lt;/p&gt;&lt;p&gt;VirtualBox enables various hardware environment options to be configured. Hit the settings button to edit your VM. Select the system item on the left. Things to try are enabling the IO APIC (motherboard tab) and 1/multiple CPU's and disabling PAE/NX features (processor tab). Also, consider reconfiguring the vhd as a SATA device if that's how the original machine was configured.&lt;/p&gt;&lt;p style="text-align: center;"&gt;&lt;img alt="" src="http://www.macrium.com/blog/content/binary/vbox5.png" style="border: 0px solid;" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;  &lt;/p&gt;&lt;hr /&gt;&lt;p&gt;&lt;strong&gt;&lt;span style="font-size: 18px;"&gt;Using the vhd with Hyper-V&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;Hyper-V is a hypervisor based virtualisation system. It only runs on x64 Windows Server 2008 and requires hardware assisted cpu features.&lt;/p&gt;&lt;p&gt;To create a VM, select 'New Virtual Machine from the Hyper-V Manager. Chose location, name and base memory size the new Virtual Machine Wizard.&lt;/p&gt;&lt;p&gt;When you get to the connect Virtual Hard Disk page, select 'Use existing virtual hard disk' and chose your previously converted vhd file.&lt;/p&gt;&lt;p style="text-align: center;"&gt;&lt;img alt="" src="http://www.macrium.com/blog/content/binary/hyperv1.png" style="border: 0px solid;" /&gt;&lt;/p&gt;&lt;p&gt;Complete the wizard and start the VM. All being well, the VM will boot. Unlike Virtual Box, there is no flexibility to change the virtual hardware options - if it doesn't boot, the OS booting options / HAL etc will need to be reconfigured. &lt;/p&gt;&lt;p&gt;&lt;em&gt;Note: If an error regarding incompatible sector size is raised, it does not refer to the VHD file as indicated, but the disk upon which the vhd is stored.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/em&gt;&lt;/p&gt;&lt;hr /&gt;&lt;p&gt;&lt;strong&gt;&lt;span style="font-size: 18px;"&gt;Using the vhd with Virtual PC&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;The process is similar to the hyper V configuration again specifying the generated vhd file an existing disk.&lt;/p&gt;&lt;p&gt;The only caveat is the 127GB disk size limitation, as previously noted.&lt;/p&gt;&lt;p&gt;Note that you must use imgToVhd v1.0.2597 or later.&lt;br /&gt;&lt;br /&gt;  &lt;/p&gt;&lt;hr /&gt;&lt;p&gt;&lt;strong&gt;&lt;span style="font-size: 18px;"&gt;Using the vhd with VMWare Server&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;VMWare Server lacks the flexibility to use vhd files as a virtual disk file and you are required to use vmware's own vmdk file format. Unfortunately, VMWareConverter will only convert complete vm configurations not individual virtual disk files.&lt;/p&gt;&lt;p&gt;The starwind V2V converter has been found to work well and is available cost free from here... &lt;a href="http://www.starwindsoftware.com/converter"&gt;http://www.starwindsoftware.com/converter&lt;/a&gt; &lt;/p&gt;&lt;p&gt;Once you have a vmdk file, the process of generating a virtual machine is similar to that discussed above. Note, be careful to chose the correct hardware connection for the vmdk i.e. ide or scsi. The correct choice will depend on source machine configuration.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt; &lt;/p&gt;&lt;hr /&gt;&lt;strong&gt;&lt;span style="font-size: 18px;"&gt;Conclusion&lt;/span&gt;&lt;/strong&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;We hope you find this tool and blog post useful.&lt;/p&gt;&lt;p&gt;The intention is for this blog to grow. Specifically, expect instructions for use with VMWare and Virtual PC to follow.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;&lt;span style="font-size: 18px;"&gt;ImgToVHD history&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;v1.0.2544 - First beta release.&lt;br /&gt;v1.0.2586 - Correct XP partition alignment problem.&lt;br /&gt;v1.0.2597 - Improve Virtual PC 2007 compatibility&lt;/p&gt;</description><pubDate>Tue, 16 Mar 2010 17:49:47 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>How to Create a Windows PE Rescue CD</title><link>http://www.macrium.com/KB/Goto50045.aspx</link><description>&lt;hr /&gt;&lt;p style="text-align: left;"&gt;In this tutorial I'll take you through the stepsrequired to build a Macrium Reflect Windows PE rescue CD. The Windows PErescue CD is only included with the purchased version of MacriumReflect and is a separate download. The first time you attempt to burnthis CD the installer will be automatically downloaded.&lt;/p&gt;&lt;p style="text-align: left;"&gt;&lt;strong&gt;Why do you need a rescue CD?&lt;/strong&gt;  &lt;/p&gt;&lt;p style="text-align: left;"&gt;This is a good question.  The simple answeris because Windows won't let you access all the files on your harddisk.  Windows uses both the RAM (main memory) and the hard diskduring normal operation.  Many of the thousands of files in your Windowssystem directory are open and running to keep your PC hummingalong.  You can't simply replace them with a different version becausethey may be loaded into memory and inaccessible from the disk.  The onlyway you can freely access every part of your system partition is tostart your PC with another operating system that loadsentirely into RAM. &lt;/p&gt;&lt;p style="text-align: left;"&gt;Enter &lt;strong&gt;Windows PE&lt;/strong&gt;.  This is licensedfrom Microsoft and has greater flexibility than the other rescueenvironments. You can add missing drivers to the Windows PE build toenable access to RAID volumes and include drivers for unrecognisednetwork interface cards (NIC).&lt;/p&gt;&lt;hr /&gt;&lt;br /&gt;&lt;table style="width: 100%;"&gt;    &lt;tbody&gt;        &lt;tr align="left" style="font-family: arial,helvetica,sans-serif;"&gt;            &lt;td valign="top" style="width: 41px; font-weight: bold;"&gt;1.&lt;/td&gt;            &lt;td align="left" valign="top"&gt;Start Reflect, &lt;strong&gt;take the ‘Other Tasks&lt;/strong&gt;’            menu option and  &lt;strong&gt;select            ‘Create a bootable Rescue CD’ &lt;/strong&gt;  The wizard opens and In            the wizard            window, &lt;strong&gt;select ‘Windows PE 2.0' &lt;/strong&gt;and &lt;strong&gt;click ‘Next’&lt;/strong&gt;.&lt;br /&gt;                         &lt;/td&gt;        &lt;/tr&gt;    &lt;/tbody&gt;&lt;/table&gt;&lt;div&gt;&lt;div style="text-align: center;"&gt;&lt;img alt="" height="317" width="400" style="margin: 0px; padding: 0px; left: 48px; right: auto; position: relative; border-width: 0px; border-style: solid;" src="http://www.macrium.com/blog/content/binary/PE1startwizard.jpg" /&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt; &lt;/div&gt;&lt;table style="width: 100%;"&gt;    &lt;tbody&gt;        &lt;tr align="left" style="font-family: arial,helvetica,sans-serif;"&gt;            &lt;td valign="top" style="width: 41px; font-weight: bold;"&gt;2.&lt;/td&gt;            &lt;td align="left" valign="top"&gt;The Windows PE component isn't supplied            with the Macrium Reflect installer and is an additional 100MB+            download.  Make sure you are connected to the Internet, and &lt;strong&gt;click &lt;/strong&gt;‘            &lt;strong&gt;OK&lt;/strong&gt;’.            &lt;br /&gt;            &lt;br /&gt;            &lt;div style="text-align: center;"&gt;            &lt;div style="text-align: center;"&gt;&lt;img alt="" height="151" width="300" src="http://www.macrium.com/blog/content/binary/PE2preparedownload.jpg" style="border-width: 0px; border-style: solid;" /&gt;&lt;br /&gt;            &lt;/div&gt;            &lt;br /&gt;            &lt;/div&gt;            &lt;strong&gt;Note&lt;/strong&gt;: To ensure            that Reflect is not blocked by a firewall you may need to &lt;em&gt;add            www.macrium.com&lt;/em&gt; to your firewall allowed            list,&lt;br /&gt;            &lt;br /&gt;            If you receive the following dialog then you            have already downloaded the Windows PE installer. Somewhere you            will have a file &lt;em&gt;&lt;strong&gt;WinPEInstall.exe&lt;/strong&gt;&lt;/em&gt;            (32 bit version) or &lt;em&gt;&lt;strong&gt;WinPEInstallx64.exe&lt;/strong&gt;&lt;/em&gt; (64 bit            version) depending where            you saved it.  Running this executable will install Windows PE.             To reinstall, double click the existing  WinPEInstall...            file.  &lt;br /&gt;            &lt;br /&gt;            &lt;div style="text-align: center;"&gt;&lt;img alt="" height="151" width="280" src="http://www.macrium.com/blog/content/binary/PE3downloadalready.jpg" style="border-width: 0px; border-style: solid;" /&gt;&lt;br /&gt;            &lt;/div&gt;            &lt;br /&gt;            &lt;strong&gt;Note &lt;/strong&gt;: You only            get one download            as each copy requires a license from Microsoft.  You can order            another copy by clicking            on the 'Purchase download' link.&lt;br /&gt;            &lt;/td&gt;        &lt;/tr&gt;    &lt;/tbody&gt;&lt;/table&gt;&lt;div style="text-align: center;"&gt;  &lt;br /&gt; &lt;/div&gt;&lt;table style="width: 100%;"&gt;    &lt;tbody&gt;        &lt;tr align="left" style="font-family: arial,helvetica,sans-serif;"&gt;            &lt;td align="left" valign="top" style="width: 41px; font-weight: bold;"&gt;3.&lt;/td&gt;            &lt;td align="left" valign="top"&gt;In the next window you select where you            are going to save your            download.  You may want to create a new folder titled ‘Reflect            Download’ or             ‘Windows PE Download’.  The folder ought to be in a location            where you can easily find it.              &lt;strong&gt;Click&lt;/strong&gt; ‘&lt;strong&gt;Save&lt;/strong&gt;’. &lt;br /&gt;            &lt;br /&gt;            &lt;/td&gt;        &lt;/tr&gt;    &lt;/tbody&gt;&lt;/table&gt;&lt;div&gt;&lt;div style="text-align: center;"&gt;&lt;img alt="" height="362" width="487" style="margin: 0px; padding: 0px; left: 48px; right: auto; position: relative; border-width: 0px; border-style: solid;" src="http://www.macrium.com/blog/content/binary/PE4downloadlocation.jpg" /&gt;&lt;br /&gt;&lt;/div&gt; &lt;/div&gt;&lt;table style="width: 100%;"&gt;    &lt;tbody&gt;        &lt;tr align="left" style="font-family: arial,helvetica,sans-serif;"&gt;            &lt;td align="left" valign="top" style="width: 41px; font-weight: bold;"&gt;4.&lt;/td&gt;            &lt;td align="left" valign="top"&gt; After downloading the installer will            automatically start....’.&lt;br /&gt;                         &lt;/td&gt;        &lt;/tr&gt;    &lt;/tbody&gt;&lt;/table&gt;&lt;div&gt;&lt;div style="text-align: center;"&gt; &lt;img alt="" height="83" width="249" src="http://www.macrium.com/blog/content/binary/PE5download.jpg" style="border-width: 0px; border-style: solid;" /&gt;  &lt;br /&gt;&lt;/div&gt;  &lt;br /&gt;&lt;/div&gt;&lt;table style="width: 100%;"&gt;    &lt;tbody&gt;        &lt;tr align="left" style="font-family: arial,helvetica,sans-serif;"&gt;            &lt;td align="left" valign="top" style="width: 41px; font-weight: bold;"&gt;&lt;br /&gt;            &lt;/td&gt;            &lt;td align="left" valign="top"&gt;&lt;br /&gt;                         &lt;br /&gt;            &lt;/td&gt;        &lt;/tr&gt;    &lt;/tbody&gt;&lt;/table&gt;&lt;div&gt;&lt;div style="text-align: center;"&gt;&lt;img alt="" height="269" width="440" style="margin: 0px; padding: 0px; left: 48px; right: auto; position: relative; border-width: 0px; border-style: solid;" src="http://www.macrium.com/blog/content/binary/PE7componentinstalling.jpg" /&gt;&lt;br /&gt;&lt;/div&gt;  &lt;br /&gt;&lt;/div&gt;&lt;table style="width: 100%;"&gt;    &lt;tbody&gt;        &lt;tr align="left" style="font-family: arial,helvetica,sans-serif;"&gt;            &lt;td align="left" valign="top" style="width: 41px; font-weight: bold;"&gt;&lt;br /&gt;            &lt;/td&gt;            &lt;td align="left" valign="top"&gt;&lt;br /&gt;            &lt;/td&gt;        &lt;/tr&gt;    &lt;/tbody&gt;&lt;/table&gt;&lt;table style="width: 100%;"&gt;    &lt;tbody&gt;        &lt;tr align="left" style="font-family: arial,helvetica,sans-serif;"&gt;            &lt;td align="left" valign="top" style="width: 41px; font-weight: bold;"&gt;5.&lt;/td&gt;            &lt;td align="left" valign="top"&gt;After installation, return to the .‘&lt;strong&gt;Create            a bootable Rescue CD&lt;/strong&gt;’ wizard, &lt;strong&gt;select 'Windows PE 2.0'&lt;/strong&gt;            and &lt;strong&gt;click 'Next'.&lt;/strong&gt;&lt;br /&gt;                         &lt;/td&gt;        &lt;/tr&gt;    &lt;/tbody&gt;&lt;/table&gt;&lt;div&gt;&lt;div style="text-align: center;"&gt;&lt;img alt="" height="295" width="369" style="margin: 0px; padding: 0px; left: 48px; right: auto; position: relative; border-width: 0px; border-style: solid;" src="http://www.macrium.com/blog/content/binary/PE1startwizard.jpg" /&gt;&lt;br /&gt;&lt;/div&gt; &lt;/div&gt;&lt;table style="width: 100%;"&gt;    &lt;tbody&gt;        &lt;tr align="left" style="font-family: arial,helvetica,sans-serif;"&gt;            &lt;td align="left" valign="top" style="width: 41px; font-weight: bold;"&gt;&lt;br /&gt;            &lt;/td&gt;            &lt;td align="left" valign="top"&gt;&lt;br /&gt;            &lt;/td&gt;        &lt;/tr&gt;        &lt;tr align="left" style="font-family: arial,helvetica,sans-serif;"&gt;            &lt;td valign="top" style="width: 41px; font-weight: bold;"&gt;6.&lt;br /&gt;            &lt;/td&gt;            &lt;td align="left" valign="top"&gt;Put an empty or erasable CD or DVD in            your burner and &lt;strong&gt;click            'Finish'&lt;/strong&gt;. &lt;br /&gt;            &lt;br /&gt;            &lt;strong&gt;Note&lt;/strong&gt;: It's better to use            non-erasable CD-R or DVD+/-R media.  This tends to be more            reliable than RW media for booting.  &lt;br /&gt;                         &lt;br /&gt;            &lt;/td&gt;        &lt;/tr&gt;    &lt;/tbody&gt;&lt;/table&gt;&lt;div&gt;&lt;div style="text-align: center;"&gt;&lt;img alt="" height="241" width="303" src="http://www.macrium.com/blog/content/binary/PE10readytoburn.jpg" style="border-width: 0px; border-style: solid;" /&gt; &lt;br /&gt;&lt;/div&gt;  &lt;br /&gt;&lt;/div&gt;&lt;table style="width: 100%;"&gt;    &lt;tbody&gt;        &lt;tr align="left" style="font-family: arial,helvetica,sans-serif;"&gt;            &lt;td valign="top" style="width: 41px; font-weight: bold;"&gt;&lt;br /&gt;            &lt;/td&gt;            &lt;td align="left" valign="top"&gt;&lt;strong&gt;Note&lt;/strong&gt;: If your CD burner has            problems creating the disc, you            can save the image to a special file called an ISO image file.             Click on the CD/DVD            burner drop-down list and &lt;strong&gt;select 'Create ISO image; file'&lt;/strong&gt;.             You can then use any            burning software that you have on your PC to create the rescue            CD. &lt;strong&gt; Click            ‘Finish’&lt;/strong&gt; to save, the .iso file.  It is usually saved to the            folder with the            Windows PE download at step 3.  Then Burn this &lt;strong&gt;.iso&lt;/strong&gt; file            using your CD/DVD            burner as ISO image.&lt;br /&gt;                         &lt;br /&gt;            &lt;/td&gt;        &lt;/tr&gt;    &lt;/tbody&gt;&lt;/table&gt;&lt;div style="text-align: center;"&gt; &lt;img alt="" height="234" width="295" src="http://www.macrium.com/blog/content/binary/PE13isosaving.jpg" style="border-width: 0px; border-style: solid;" /&gt;&lt;br /&gt; &lt;/div&gt;&lt;strong&gt;You should now have your Rescue CD ready to restore an image.  &lt;/strong&gt;&lt;strong&gt;&lt;em&gt;Keepthe rescue CD in a safe place&lt;/em&gt;&lt;/strong&gt; &lt;br /&gt;&lt;br /&gt;You should boot yourcomputer with the rescue CD to make sure it can see all your drivesincludingthe backup location.If your disks aren't detected by Windows PE then you may need to adddrivers to the Windows PE build and create a fresh CD. You can findadditional information on this here: &lt;a href="http://www.macrium.com/webhelp/Adding_Drivers.asp?nohead=y"&gt;http://www.macrium.com/webhelp/Adding_Drivers.asp?nohead=y&lt;/a&gt;&lt;strong&gt;&lt;em&gt;&lt;br /&gt;&lt;/em&gt;&lt;/strong&gt;&lt;br /&gt;</description><pubDate>Sun, 14 Feb 2010 17:49:47 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>How to Backup Files and Folders using Macrium Reflect</title><link>http://www.macrium.com/KB/Goto50032.aspx</link><description>&lt;hr /&gt;A &lt;strong&gt;file and folder&lt;/strong&gt; backup is a useful way to backup your working files, personal files and any precious data.  Unlike many other backup solutions Macrium Reflect can even backup open/locked files by using Microsoft Volume Shadow copy Service (VSS).&lt;br /&gt;&lt;br /&gt;In this tutorial I’ll take you through the steps to create a full backup of your ‘Outlook pst file’ (an e-mail file) and save the backup definition as an XML file for easy re-running and scheduling.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Note:&lt;/strong&gt; If you wish to backup your Operating System, Do Not use a File &amp;amp; Folder Backup, you must use an Image Backup.  You cannot restore Windows Operating System files using a file and folder restore.  A File/Folder backup is not suitable for Windows Operating System files.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;1.&lt;/strong&gt; Start&lt;strong&gt; Macrium Reflect&lt;/strong&gt; and within the &lt;strong&gt;'Backup Tasks' &lt;/strong&gt;options select &lt;strong&gt;‘Backup files and folders’&lt;/strong&gt; to start the backup wizard. The backup Wizard starts.  &lt;strong&gt;Click on ‘Next’&lt;/strong&gt;.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt; &lt;img alt="" src="http://www.macrium.com/blog/content/binary/2start1.jpg" style="border: 0px solid ;" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;strong&gt;2. &lt;/strong&gt;In the next window leave the option as ‘&lt;strong&gt;Full&lt;/strong&gt;’ (the other options are Incremental and Differential, but these are covered later).  &lt;strong&gt;Click on ‘Next’&lt;/strong&gt;.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;img alt="" src="http://www.macrium.com/blog/content/binary/3full.jpg" style="border: 0px solid ;" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;strong&gt;3. &lt;/strong&gt;You can now choose the folders you want to backup. &lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Note&lt;/strong&gt;: Folder selections are recursive.  This means that all folders underneath the selected folder are included and any new folders in the future will be automatically included.  So, if you backup your 'Documents' folder then any new folders you add underneath 'Documents' will be included when you run the backup again.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;You can select multiple folders, in this example I have just selected my outlook data folder.&lt;br /&gt;&lt;strong&gt;Click on ‘Next’&lt;/strong&gt; after making selection.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;img alt="" src="http://www.macrium.com/blog/content/binary/4choosefoldersselected.jpg" style="border: 0px solid ;" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;strong&gt;&lt;br /&gt;Note&lt;/strong&gt;: in selecting the Outlook folder I had to show hidden folders before I could find the Outlook folder as it was hidden. &lt;br /&gt;&lt;br /&gt;To show hidden folders: Open &lt;strong&gt;Windows Explorer&lt;/strong&gt;: then in Windows 7 or Vista select '&lt;strong&gt;Folders and Search Option&lt;/strong&gt;' in the &lt;strong&gt;Organize &lt;/strong&gt;Tab or in Windows XP select '&lt;strong&gt;Folder Options&lt;/strong&gt;' in the &lt;strong&gt;Tools &lt;/strong&gt;menu.  Now &lt;strong&gt;select the 'View'  Tab&lt;/strong&gt; and scroll down if necessary so you can select '&lt;strong&gt;Show hidden files folders&lt;/strong&gt;'. &lt;br /&gt;&lt;br /&gt;While you are in this Tab it may help later if you also display file extensions :- Remove the tick against '&lt;strong&gt;Hide extensions for known file types&lt;/strong&gt;'.  Click on '&lt;strong&gt;Apply&lt;/strong&gt;' and then '&lt;strong&gt;OK&lt;/strong&gt;' (just '&lt;strong&gt;OK&lt;/strong&gt;' in XP).  Close 'Windows Explorer'.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;4. &lt;/strong&gt;Having selected the folders, in the next window we select the files needing to be backed up within the folders.  You can use standard DOS wildcard formatting to select files to include and exclude. Multiple selections must be separated by a semi colon.&lt;br /&gt;&lt;br /&gt;e.g,  *.doc; *.xls&lt;br /&gt;&lt;br /&gt;Other examples are shown below:&lt;br /&gt;&lt;br /&gt;&lt;table align="center" class="telerik-reTable-4"&gt;    &lt;thead&gt;    &lt;/thead&gt;    &lt;tbody&gt;        &lt;tr class="telerik-reTableHeaderRow-4"&gt;            &lt;td align="left" class="telerik-reTableHeaderFirstCol-4"&gt;&lt;strong&gt;Example&lt;br /&gt;            &lt;/strong&gt;&lt;/td&gt;            &lt;td class="telerik-reTableHeaderOddCol-4"&gt;&lt;strong&gt;Meaning&lt;br /&gt;            &lt;/strong&gt;&lt;/td&gt;            &lt;td class="telerik-reTableHeaderEvenCol-4"&gt;&lt;strong&gt;Example &lt;br /&gt;            &lt;/strong&gt;&lt;/td&gt;            &lt;td class="telerik-reTableHeaderLastCol-4"&gt;&lt;strong&gt;Meaning &lt;br /&gt;            &lt;/strong&gt;&lt;/td&gt;        &lt;/tr&gt;        &lt;tr class="telerik-reTableOddRow-4"&gt;            &lt;td class="telerik-reTableFirstCol-4"&gt; *.doc&lt;/td&gt;            &lt;td class="telerik-reTableOddCol-4"&gt;All .doc WORD files &lt;br /&gt;            &lt;/td&gt;            &lt;td class="telerik-reTableEvenCol-4"&gt; *.jpg&lt;/td&gt;            &lt;td class="telerik-reTableLastCol-4"&gt;All jpg files &lt;br /&gt;            &lt;/td&gt;        &lt;/tr&gt;        &lt;tr class="telerik-reTableEvenRow-4"&gt;            &lt;td class="telerik-reTableFirstCol-4"&gt; *.xls&lt;/td&gt;            &lt;td class="telerik-reTableOddCol-4"&gt; All xls Excel files&lt;br /&gt;            &lt;/td&gt;            &lt;td class="telerik-reTableEvenCol-4"&gt; *.*&lt;/td&gt;            &lt;td class="telerik-reTableLastCol-4"&gt; All files&lt;br /&gt;            &lt;/td&gt;        &lt;/tr&gt;        &lt;tr class="telerik-reTableOddRow-4"&gt;            &lt;td class="telerik-reTableFirstCol-4"&gt; Letter2010c.doc&lt;/td&gt;            &lt;td class="telerik-reTableOddCol-4"&gt; File Name: Letter2010C.doc&lt;br /&gt;            &lt;/td&gt;            &lt;td class="telerik-reTableEvenCol-4"&gt; *.doc, *.xls, *.jpg&lt;br /&gt;            &lt;/td&gt;            &lt;td class="telerik-reTableLastCol-4"&gt; WORD, Excel and jpg files&lt;br /&gt;            &lt;/td&gt;        &lt;/tr&gt;        &lt;tr class="telerik-reTableFooterRow-4"&gt;            &lt;td valign="top" class="telerik-reTableFooterFirstCol-4"&gt;*.pst&lt;br /&gt;            &lt;/td&gt;            &lt;td valign="top" class="telerik-reTableFooterOddCol-4"&gt;Outlook email file&lt;br /&gt;            &lt;/td&gt;            &lt;td valign="top" class="telerik-reTableFooterEvenCol-4"&gt;*.doc, *.docx&lt;br /&gt;            &lt;/td&gt;            &lt;td valign="top" class="telerik-reTableFooterLastCol-4"&gt;All WORD files            &lt;/td&gt;        &lt;/tr&gt;    &lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;See &lt;a class="ApplyClass" href="http://filext.com/"&gt;here &lt;/a&gt;for a list of file extensions&lt;br /&gt;&lt;br /&gt;In wizard window below all .pst files were chosen by entering '*.pst'. Normally we leave exclusions and ticks unchanged at defaults but in this case remove the tick against '&lt;strong&gt;Exclude Hidden Files and Folders&lt;/strong&gt;' as .pst files were within hidden folders.  &lt;strong&gt;Click on ‘Next’&lt;/strong&gt;&lt;ol&gt;    &lt;style type="text/css" id="telerik-reTable-4"&gt;        .telerik-reTable-4   {        border-collapse: collapse;        border: solid 0px;        font-family: Tahoma;        }        .telerik-reTable-4 tr.telerik-reTableHeaderRow-4     {        border-width: 1.0pt 1.0pt 3.0pt 1.0pt;        margin-top: 0in;        margin-right: 0in;        margin-bottom: 10.0pt;        margin-left: 0in;        line-height: 115%;        font-size: 11.0pt;        font-family: "Calibri","sans-serif";        width: 119.7pt;        background: #4F81BD;        padding: 0in 5.4pt 0in 5.4pt;        color: #FFFFFF;        }        .telerik-reTable-4 td.telerik-reTableHeaderFirstCol-4   {        padding: 0in 5.4pt 0in 5.4pt;        }        .telerik-reTable-4 td.telerik-reTableHeaderLastCol-4  {        padding: 0in 5.4pt 0in 5.4pt;        }        .telerik-reTable-4 td.telerik-reTableHeaderOddCol-4 {        padding: 0in 5.4pt 0in 5.4pt;        }        .telerik-reTable-4 td.telerik-reTableHeaderEvenCol-4 {        padding: 0in 5.4pt 0in 5.4pt;        }        .telerik-reTable-4 tr.telerik-reTableOddRow-4 {        border-width: 1pt;        color: #666666;        font-size: 10pt;        vertical-align: top;        border-bottom-style: solid;        border-bottom-color: #4F81BD;        }        .telerik-reTable-4 tr.telerik-reTableEvenRow-4 {        color: #666666;        font-size: 10pt;        vertical-align: top;        }        .telerik-reTable-4 td.telerik-reTableFirstCol-4  {        border-width: 1pt;        border-color: #4F81BD;        padding: 0in 5.4pt 0in 5.4pt;        border-bottom-style: solid;        border-left-style: solid;        }        .telerik-reTable-4 td.telerik-reTableLastCol-4 {        border-width: 1pt;        border-color: #4F81BD;        border-bottom-style: solid;        border-right-style: solid;        padding: 0in 5.4pt 0in 5.4pt;        }        .telerik-reTable-4 td.telerik-reTableOddCol-4  {        border-width: 1pt;        border-color: #4F81BD;        padding: 0in 5.4pt 0in 5.4pt;        border-bottom-style: solid;        }        .telerik-reTable-4 td.telerik-reTableEvenCol-4 {        border-width: 1pt;        border-color: #4F81BD;        padding: 0in 5.4pt 0in 5.4pt;        border-bottom-style: solid;        }        .telerik-reTable-4 tr.telerik-reTableFooterRow-4    {        color: #355C8C;        background-color: #FFFFFF;        font-size: 10pt;        vertical-align: top;        padding: 0in 5.4pt 0in 5.4pt;        }        .telerik-reTable-4 td.telerik-reTableFooterFirstCol-4  {        border-width: 1pt;        border-color: #4F81BD;        border-bottom-style: solid;        border-left-style: solid;        padding: 0in 5.4pt 0in 5.4pt;        }        .telerik-reTable-4 td.telerik-reTableFooterLastCol-4 {        border-width: 1pt;        border-color: #4F81BD;        border-bottom-style: solid;        border-right-style: solid;        padding: 0in 5.4pt 0in 5.4pt;        }        .telerik-reTable-4 td.telerik-reTableFooterOddCol-4  {        border-width: 1pt;        border-color: #4F81BD;        border-bottom-style: solid;        padding: 0in 5.4pt 0in 5.4pt;        }        .telerik-reTable-4 td.telerik-reTableFooterEvenCol-4  {        border-width: 1pt;        border-color: #4F81BD;        border-bottom-style: solid;        padding: 0in 5.4pt 0in 5.4pt;        }    &lt;/style&gt;    &lt;br /&gt;&lt;/ol&gt;&lt;div style="text-align: center;"&gt;&lt;img alt="" width="519" height="374" src="http://www.macrium.com/blog/content/binary/4selectfiletype.jpg" style="border: 0px solid ;" /&gt;&lt;br /&gt;&lt;/div&gt;&lt;ol&gt;    &lt;br /&gt;    &lt;br /&gt;&lt;/ol&gt;&lt;strong&gt;5.&lt;/strong&gt; The next window enables the destination of the backup to be selected, you need to select one of three options (a), (b) or (c):&lt;br /&gt;&lt;ol&gt;&lt;/ol&gt;&lt;blockquote&gt;a)  If you select ‘&lt;strong&gt;Local Hard Drive&lt;/strong&gt;’ click on ▼ to get a drop down menu where you can search partitions, external hard drives, memory sticks (flash drives) etc to save your backup, you can also create a new folder there if needed.&lt;br /&gt;&lt;br /&gt;b)  If you select ‘&lt;strong&gt;Network&lt;/strong&gt;’ you can search for another PC or Network Attached Storage etc. to save the backup.&lt;br /&gt;&lt;br /&gt;c)  If you select ‘&lt;strong&gt;CD/DVD Burner&lt;/strong&gt;’ you can select which Drive to save the backup.&lt;/blockquote&gt;&lt;ol&gt;&lt;/ol&gt;&lt;ol&gt;    &lt;br /&gt;&lt;/ol&gt;&lt;div style="text-align: center;"&gt;&lt;img alt="" src="http://www.macrium.com/blog/content/binary/5backuplocation.jpg" style="border: 0px solid ;" /&gt;&lt;br /&gt;&lt;/div&gt;&lt;ol&gt;    &lt;br /&gt;&lt;/ol&gt;Leave the Backup file name unchanged.  &lt;strong&gt;Click on ‘Next’&lt;/strong&gt; to finalise backup process.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;6. &lt;/strong&gt;The next window shows backup selection.  &lt;strong&gt;Click on ‘Finish’&lt;/strong&gt; to start backup.  If you have chosen CD/DVD burner you will be prompted to insert disk.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;img alt="" src="http://www.macrium.com/blog/content/binary/9backupselection.jpg" style="border: 0px solid ;" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align: left;"&gt;&lt;strong&gt;7. &lt;/strong&gt;In the next window you should enter an XML file name for the backupdefinition.  Using this XML filename you can easily find it the XML Tabif you either want to re-run the backup without going through thewizard again or want to schedule the backup.   &lt;strong&gt;Now click on ‘OK’.&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt; &lt;img alt="" src="http://www.macrium.com/blog/content/binary/10Saveoptions.jpg" style="border: 0px solid ;" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;strong&gt;8. &lt;/strong&gt;The next window below shows progress while backing up the file(s) and folders.  When backup is complete &lt;strong&gt;click OK &lt;/strong&gt;to close the small completion window and also close the progress window. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;img alt="" src="http://www.macrium.com/blog/content/binary/11BackingUp1.jpg" style="border: 0px solid ;" /&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt; &lt;img alt="" src="http://www.macrium.com/blog/content/binary/12BackupComplete.jpg" style="border: 0px solid ;" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Now the Task is Complete&lt;/strong&gt;, if you wish, you can look at the log, there is a '&lt;strong&gt;Log&lt;/strong&gt;' Tab in the main Reflect window to check what you have done.&lt;br /&gt;&lt;br /&gt;In the next tutorial I'll show you how to backup only the files that have changed since this full backup was made, by creating an '&lt;strong&gt;Incremental Backup&lt;/strong&gt;'.&lt;strong&gt;&lt;br /&gt;&lt;/strong&gt;&lt;ol&gt;&lt;/ol&gt;&lt;hr /&gt;</description><pubDate>Tue, 09 Feb 2010 17:49:47 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>How to fix common boot problems using the Windows PE </title><link>http://www.macrium.com/KB/Goto50011.aspx</link><description>&lt;hr /&gt;&lt;p&gt;&lt;strong&gt;&lt;span style="font-size: 24px;"&gt;&lt;/span&gt;&lt;/strong&gt;The Macrium Reflect Windows PE 2.0 rescue CD includes an option to 'Fix Boot Problems. This article takes you through the steps and options available to recover a non-booting Windows implementation.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Note&lt;/strong&gt;: All references to Windows XP in this article also apply to Windows Server 2003. References to Windows Vista also apply to Windows Server 2008&lt;/p&gt;&lt;hr /&gt;&lt;p&gt;There can be be many reasons why your PC won't boot into Windows. Fortunately, you can usually recover your system if the boot process is corrupt by taking an option provided in the Windows PE 2.0 rescue environment called 'Fix Boot Problems'.&lt;/p&gt;&lt;ol&gt;    &lt;li&gt;    Start your PC with the Windows PE 2.0 rescue CD and click the 'Fix Boot Problems' button.&lt;br /&gt;    &lt;br /&gt;    &lt;div style="text-align: left;"&gt;    &lt;img alt="" style="border: 0px solid;" src="http://www.macrium.com/blog/content/binary/fixbot.jpg" /&gt;&lt;br /&gt;    &lt;br /&gt;    &lt;/div&gt;    &lt;/li&gt;    &lt;li&gt;Your system is then scanned for installed Windows operating systems. &lt;br /&gt;    &lt;strong&gt;&lt;br /&gt;    Note:&lt;/strong&gt; In a multi-boot environment you will see multiple Windows installations. &lt;br /&gt;    &lt;br /&gt;    &lt;div style="text-align: left;"&gt;    &lt;img alt="" style="border: 0px solid;" src="http://www.macrium.com/blog/content/binary/page1.jpg" /&gt;&lt;br /&gt;    &lt;/div&gt;    &lt;br /&gt;    &lt;br /&gt;    &lt;strong&gt;Add:&lt;/strong&gt; Click this button to add a Windows installation that hasn't been detected.&lt;strong&gt;&lt;br /&gt;    &lt;br /&gt;    Edit:&lt;/strong&gt; Click this  button to edit the name of your Windows Installation. The name appears on the boot menu for multi-boot environments.&lt;strong&gt;&lt;br /&gt;    &lt;br /&gt;    &lt;/strong&gt;Note&lt;strong&gt;:&lt;/strong&gt; If you just have a single Windows installation then you don't have to worry about editing the O/S name as you won't see a boot menu.&lt;strong&gt;&lt;br /&gt;    &lt;br /&gt;    Ignore:&lt;/strong&gt; Click this button not to include the O/S in the Windows boot menu.&lt;strong&gt;&lt;br /&gt;    &lt;br /&gt;    Search:&lt;/strong&gt; Click this button to rescan your drives.&lt;strong&gt;&lt;br /&gt;    &lt;br /&gt;    Click 'Next'&lt;/strong&gt; to continue.&lt;/li&gt;    &lt;li&gt;The next page shows disk and partitions on the disks. Windows can only start if the system partition (usually drive 'C') is marked as the 'Active' partition. You can choose which partition is 'active' &lt;strong&gt;by selecting it with a check mark.&lt;br /&gt;    &lt;br /&gt;    &lt;/strong&gt;    &lt;div style="text-align: left;"&gt;&lt;strong&gt;    &lt;img alt="" style="border: 0px solid;" src="http://www.macrium.com/blog/content/binary/page2.jpg" /&gt;&lt;/strong&gt;&lt;br /&gt;    &lt;/div&gt;    &lt;strong&gt;    &lt;br /&gt;    Click 'Next'&lt;/strong&gt; to continue.&lt;/li&gt;    &lt;li&gt;The final wizard page shows the options available to correct the boot process.&lt;br /&gt;    &lt;br /&gt;    &lt;div style="text-align: left;"&gt;    &lt;img alt="" style="border: 0px solid;" src="http://www.macrium.com/blog/content/binary/page3.jpg" /&gt;&lt;br /&gt;    &lt;/div&gt;    &lt;br /&gt;    &lt;strong&gt;i) Reset the boot disk ID:&lt;/strong&gt; The Disk ID is used by XP and Vista to allocate and remember driver letters and partitions. It forms part of a unique identifier that Windows stores in the registry along with the offset from the beginning of the disk for the partition. &lt;br /&gt;    &lt;br /&gt;    If you restore the system partition (Drive C:) to a different position    on your disk then Windows can get driver letters 'mixed up'. If drive    'C' is now in a location where drive 'D' used to be then Windows may    fail to boot. If you reset the Disk ID then Windows will re-allocate    drive letter assignments and will correctly set drive 'C' to be the    active partition.  &lt;br /&gt;    &lt;br /&gt;    &lt;strong&gt;Note&lt;/strong&gt;: if your O/S is Vista then you must rebuild the BCD  (last option) if you reset the Disk ID.&lt;br /&gt;    &lt;br /&gt;    &lt;strong&gt;ii) Replace the Master Boot Record&lt;/strong&gt;: The Master Boot Record (MBR) is the first part of the boot process and is a small program on the first 512 bytes of the disk.&lt;br /&gt;    &lt;br /&gt;    You need to replace this if your MBR has become corrupted, perhaps with a virus.  &lt;br /&gt;    &lt;br /&gt;    It's also possible that your PC shipped with a non-standard MBR that doesn't work correctly with a new disk. In this case, replacing with the standard Windows MBR will allow your PC to boot.&lt;br /&gt;    &lt;br /&gt;    &lt;strong&gt;iiii) Replace the partition boot sector code&lt;/strong&gt;: The partition boot sector code is the second part of the boot process and is a small program that is added to the front of a partition when you format a file system. If this code has been damaged, perhaps due to a virus, then replacing it will allow Windows to boot normally.&lt;br /&gt;    &lt;br /&gt;    &lt;br /&gt;    &lt;strong&gt;iv) Rebuild the BCD and BOOT.INI files:&lt;/strong&gt; These files perform the last part of the boot process and tell Windows where to find the operating system, the '\windows\system32' folder.&lt;br /&gt;    &lt;br /&gt;    &lt;strong&gt;XP&lt;/strong&gt; uses the &lt;a target="_blank" href="http://support.microsoft.com/kb/314081"&gt;&lt;span class="ApplyClass"&gt;boot.in&lt;/span&gt;i&lt;/a&gt; file and if you restore your system partition to a different partition number then this file needs to be rebuilt. e.g, your original disk had a recovery partition as the first partition on disk and your system partition (drive c:) as the second. You restore to a new disk but don't restore the recovery partition as this is no-longer required. The system partition has now moved from partition 2 to partition 1. In this case you may need to rebuild the boot.ini file to reflect this change.&lt;br /&gt;    &lt;br /&gt;    &lt;strong&gt;Vista&lt;/strong&gt; uses something called the &lt;a href="http://en.wikipedia.org/wiki/Windows_Vista_startup_process"&gt;Boot Configuration Data (BCD)&lt;/a&gt; as a replacement for the &lt;a href="http://support.microsoft.com/kb/314081"&gt;boot.ini&lt;/a&gt;. It isn't concerned with the numbering of the system partition but is dependant on the exact offset from the beginning of the disk and the Disk ID. If you have moved your system partition to a different position or reset the Disk ID then you need to rebuild the BCD.&lt;br /&gt;    If your PC won't boot and you are unsure which option to select then selecting every option will usually resolve the problem.&lt;br /&gt;    &lt;br /&gt;    If you restore the system partition (Drive C:) to a different position on your disk then Windows can get driver letters 'mixed up'. If drive 'C' is now in a location where drive 'D' used to be then Windows may fail to boot. If you reset the Disk ID then Windows will re-allocate drive letter assignments and will correctly set drive 'C' to be the active partition.&lt;br /&gt;    &lt;strong&gt;    Note:&lt;/strong&gt; if your O/S is Vista then you must rebuild the BCD  (last option) if you reset the Disk ID.    &lt;/li&gt;&lt;/ol&gt;&lt;p&gt;&lt;/p&gt;&lt;hr /&gt;&lt;p&gt;&lt;strong&gt;&lt;span style="font-size: 18px;"&gt;Example boot errors&lt;/span&gt;&lt;/strong&gt;  &lt;/p&gt;&lt;p&gt;&lt;strong&gt;O/S:&lt;/strong&gt;         Vista&lt;br /&gt;&lt;strong&gt;Error: File: &lt;/strong&gt;\Windows\system32\winload.exe &lt;br /&gt;                Status: 0xc000000e&lt;/p&gt;&lt;div style="text-align: left;"&gt;&lt;img alt="" style="border: 0px solid;" src="http://www.macrium.com/blog/content/binary/BCD%20Error1.jpg" /&gt;&lt;/div&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;This indicates that the &lt;a href="http://en.wikipedia.org/wiki/Windows_Vista_startup_process"&gt;Vista Boot Configuration Data (BCD)&lt;/a&gt; is invalid. &lt;strong&gt;Take the option to Rebuild the BCD and BOOT.INI files&lt;br /&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&lt;br /&gt; &lt;br /&gt;O/S: &lt;/strong&gt;  XP&lt;br /&gt;&lt;strong&gt;Error:&lt;/strong&gt; &amp;lt;Windows root&amp;gt;\system32\hal.dll is missing or corrupt&lt;/p&gt;&lt;div style="text-align: left;"&gt;&lt;img alt="" style="border: 0px solid;" src="http://www.macrium.com/blog/content/binary/bootini%20Error1.jpg" /&gt;&lt;br /&gt;&lt;/div&gt;&lt;p&gt;This indicates that the XP boot.ini file is invalid. &lt;strong&gt;Take the option to Rebuild the BCD and BOOT.INI files&lt;br /&gt;&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;O/S:&lt;/strong&gt;   XP&lt;br /&gt;&lt;strong&gt;Error:&lt;/strong&gt; NTLDR is missing&lt;/p&gt;&lt;div style="text-align: left;"&gt;&lt;img alt="" style="border: 0px solid;" src="http://www.macrium.com/blog/content/binary/wrong%20active%20partition.jpg" /&gt;&lt;/div&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;The most probable cause for this error is that your system partition isn't the 'Active' partition. If you have a multi partitioned disk then you must &lt;strong&gt;set the partition that contains XP as the 'Active' partition&lt;/strong&gt;. Select the system partition as the active partition in step 2 above.&lt;br /&gt;&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;&lt;strong&gt;O/S:&lt;/strong&gt;   Any&lt;br /&gt;&lt;strong&gt;Error:&lt;/strong&gt;  Boot failure - This is a typical message but different PCs may have a different message&lt;/p&gt;&lt;div style="text-align: left;"&gt;&lt;img alt="" style="border: 0px solid;" src="http://www.macrium.com/blog/content/binary/missing%20MBR.jpg" /&gt;&lt;br /&gt;&lt;/div&gt;&lt;p&gt;This indicates that your Master Boot Record is missing or corrupt. Take the option to &lt;strong&gt;Replace the Master Boot Record&lt;/strong&gt;&lt;/p&gt;&lt;br /&gt;</description><pubDate>Mon, 27 Jul 2009 17:49:47 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>How to use RoboRestore to restore a disk image</title><link>http://www.macrium.com/KB/Goto50012.aspx</link><description>&lt;hr /&gt;&lt;p&gt;&lt;strong&gt;&lt;span style="font-size: 24px;"&gt;&lt;/span&gt;&lt;/strong&gt;This article will take you through the steps to use RoboRestore to restore a disk image.  &lt;/p&gt;&lt;p&gt;RoboRestore is a free utility that works with image files created with both Macrium Reflect free and full editions.  RoboRestore uses Microsoft's Robocopy utilty to copy files from a disk image to an existing file system. The existing file system can be any size greater than the used space of the partition saved in the disk image. This effectively overcomes the issue with a normal disk image restore that prevents restoring to a smaller partition than the original. &lt;/p&gt;&lt;p&gt;The restored partition can also use a different alignment to the imaged partition which enables XP system partitions to be aligned efficiently for Solid State Disks (SSD). &lt;br /&gt; &lt;/p&gt;&lt;hr /&gt;&lt;strong&gt;&lt;span style="font-size: 18px;"&gt;Do I need to use RoboRestore?&lt;/span&gt;&lt;/strong&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;No. In most cases you can use the normal disk image restore wizard. A tutorial for restoring with the Linux CD can be found here: &lt;/p&gt;&lt;p&gt;&lt;a href="http://www.macrium.com/blog/2008/06/21/HowToRecoverYourPCUsingTheLinuxRescueCDPartI.aspx"&gt;http://www.macrium.com/blog/2008/06/21/HowToRecoverYourPCUsingTheLinuxRescueCDPartI.aspx&lt;/a&gt; &lt;br /&gt;&lt;a href="http://www.macrium.com/blog/2008/06/30/HowToRecoverYourPCUsingTheLinuxRescueCDPartII.aspx"&gt;http://www.macrium.com/blog/2008/06/30/HowToRecoverYourPCUsingTheLinuxRescueCDPartII.aspx&lt;/a&gt;&lt;/p&gt;&lt;p&gt;RoboRestore  provides an alternative method of restoring a disk image by copying the files in the image to an existing file system. Use RoboRestore if you want to restore to a disk that is smaller than the original or has a different partition alignment. You can also use RoboRestore if your image file is corrupt and cannot be restored normally. Files can normally be copied from a corrupt image but the integrity of the restored files cannot be guaranteed.&lt;br /&gt; &lt;/p&gt;&lt;hr /&gt;&lt;p&gt;&lt;strong&gt;&lt;span style="font-size: 18px;"&gt;What's Microsoft Robocopy?&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;a target="_blank" class="ApplyClass" href="http://www.macrium.com/blog/ct.ashx?id=20a97aeb-f0e5-4b21-bcb0-fc82c9d46a0c&amp;amp;url=http%3a%2f%2fen.wikipedia.org%2fwiki%2fRobocopy"&gt;Robocopy&lt;/a&gt;, or "Robust File Copy", is a command line utility to copy files and folders and includes all NTFS file permissions and alternative data streams.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.macrium.com/blog/ct.ashx?id=20a97aeb-f0e5-4b21-bcb0-fc82c9d46a0c&amp;amp;url=http%3a%2f%2fen.wikipedia.org%2fwiki%2fRobocopy"&gt;Robocopy &lt;/a&gt;is included with Windows Server 2003, Server 2008, Vista and Windows 7. XP users need to follow the instructions in step 2 below. &lt;br /&gt;&lt;br /&gt; &lt;/p&gt;&lt;hr /&gt;&lt;p&gt;&lt;strong&gt;&lt;span style="font-size: 18px;"&gt;How do I use it?&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;RoboRestore is very simple to use and only has a few options.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&lt;span style="font-size: 18px;"&gt;Preparation&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;ol&gt;    &lt;li&gt;Download 'roborestore.zip' and save it to any folder on your PC. Unzip 'roborestore.exe' to the same directory.&lt;br /&gt;    32 Bit - &lt;a href="http://www.macrium.com/blog/ct.ashx?id=20a97aeb-f0e5-4b21-bcb0-fc82c9d46a0c&amp;amp;url=http%3a%2f%2fwww.macrium.com%2fdownload%2fdirect%2froborestore%2fv1.0.7%2froborestore.zip"&gt;Download&lt;/a&gt;&lt;br /&gt;    64 Bit - &lt;a href="http://www.macrium.com/blog/ct.ashx?id=20a97aeb-f0e5-4b21-bcb0-fc82c9d46a0c&amp;amp;url=http%3a%2f%2fwww.macrium.com%2fdownload%2fdirect%2froborestore%2fv1.0.7%2froborestorex64.zip"&gt;Download&lt;br /&gt;    &lt;/a&gt;&lt;br /&gt;    If want to run RoboRestore from &lt;a href="http://www.macrium.com/InstantKB20/KnowledgebaseArticle50015.aspx"&gt;BartPE &lt;/a&gt;or Windows PE 2.&lt;strong&gt;0&lt;/strong&gt; then make sure the folder will be accessible once the rescue disc boots. If necessary copy it to a USB thumb drive.&lt;/li&gt;    &lt;li&gt;If you are using Windows XP or BartPE then you also need to download and install the &lt;a href="http://www.macrium.com/blog/ct.ashx?id=20a97aeb-f0e5-4b21-bcb0-fc82c9d46a0c&amp;amp;url=http%3a%2f%2fwww.microsoft.com%2fDownloads%2fdetails.aspx%3fFamilyID%3d9d467a69-57ff-4ae7-96ee-b18c4790cffd%26displaylang%3den"&gt;'Windows Server 2003 Resource Kit Tools'&lt;/a&gt;.&lt;br /&gt;    &lt;br /&gt;    Once installed, copy the file &lt;strong&gt;'robocopy.exe'&lt;/strong&gt; from folder &lt;strong&gt;'C:\Program Files\Windows Resource Kits\Tools'&lt;/strong&gt; to the same folder as 'roborestore.exe'.&lt;/li&gt;&lt;/ol&gt;&lt;p&gt;&lt;strong&gt;&lt;span style="font-size: 18px;"&gt;Using it&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;ol&gt;    &lt;li&gt;Double click 'roborestore.exe' or use a command prompt in &lt;a href="http://www.macrium.com/InstantKB20/KnowledgebaseArticle50015.aspx"&gt;BartPE &lt;/a&gt;or Windows PE to run the program by entering the full path name.&lt;br /&gt;    &lt;br /&gt;    The following dialog is displayed:&lt;br /&gt;    &lt;br /&gt;    &lt;div style="text-align: center;"&gt;&lt;img alt="" src="http://www.macrium.com/blog/content/binary/robocopy1.jpg" style="border: 0px solid;" /&gt;&lt;br /&gt;    &lt;/div&gt;      &lt;/li&gt;    &lt;li&gt;&lt;strong&gt;Click the '...' button&lt;/strong&gt; and&lt;strong&gt; select your image file.&lt;br /&gt;    &lt;br /&gt;    Note:&lt;/strong&gt; You cannot use RoboRestore for disk images that span multiple DVD's. If you have multiple DVD's then first copy all the DVD files to a single folder on a local/network drive.&lt;br /&gt;      &lt;/li&gt;    &lt;li&gt;If you have multiple partitions saved in the image file then &lt;strong&gt;select the partition you want to restore&lt;/strong&gt;. In the above example we are restoring an image of drive 'H:'.&lt;br /&gt;      &lt;/li&gt;    &lt;li&gt;&lt;strong&gt;Select the destination in the drop down list&lt;/strong&gt;. If you are running from within Windows then you cannot select drive 'C:\'. In this case please start your PC with either the &lt;a href="http://www.macrium.com/InstantKB20/KnowledgebaseArticle50015.aspx"&gt;BartPE &lt;/a&gt; or Windows PE 2.0 rescue CD and run RoboRestore from within that environment.&lt;br /&gt;      &lt;/li&gt;    &lt;li&gt;&lt;strong&gt;Format destination before copy:&lt;/strong&gt; This option enables you to create a clean destination drive before the copy. If you don't format the destination then existing folders and files, not in the backup, will remain unchanged.&lt;br /&gt;      &lt;/li&gt;    &lt;li&gt;&lt;strong&gt;Make destination bootable:&lt;/strong&gt; Select this option if you are restoring an image of your Windows System drive (Drive C:). &lt;strong&gt;Click the 'Advanced'&lt;/strong&gt; button to refine the operations executed when this option is selected.&lt;strong&gt;&lt;br /&gt;    &lt;br /&gt;    Note:&lt;/strong&gt; By default the Disk identifier is transferred from the original disk to the destination disk. Windows will not boot properly if two disks are attached with the same Disk Identifier. If you select this option and you are cloning your current system, then disconnect one of the disks before booting. &lt;br /&gt;      &lt;/li&gt;    &lt;li&gt;&lt;strong&gt;Run Robocopy:&lt;/strong&gt; Select this option to run robocopy when the 'Start' button is clicked.&lt;br /&gt;    &lt;br /&gt;    Once selected you can modify the parameters for the command and choose to hide the output of robocopy if you wish. Only modify the robocopy command line options if you know what you are doing.&lt;strong&gt;&lt;br /&gt;    &lt;br /&gt;    Note: Do not modify &amp;lt;SRC &amp;gt; and &amp;lt;DST&amp;gt; tags.&lt;/strong&gt; These are automatically replaced with the source and destination of the restore when robocopy is run.&lt;br /&gt;    &lt;br /&gt;    For more information on the available command line options please see &lt;a href="http://www.macrium.com/blog/ct.ashx?id=20a97aeb-f0e5-4b21-bcb0-fc82c9d46a0c&amp;amp;url=http%3a%2f%2fen.wikipedia.org%2fwiki%2fRobocopy"&gt;here&lt;/a&gt;.&lt;/li&gt;    &lt;li&gt;    &lt;strong&gt;Click the 'Start' button&lt;/strong&gt; and the restore will begin. The restore process may be significantly slower than a regular disk image restore, but be patient and wait for the completion message. A full log will be created in '\roborestore.txt'&lt;/li&gt;&lt;/ol&gt;&lt;p&gt;&lt;/p&gt;&lt;hr /&gt;&lt;strong&gt;&lt;span style="font-size: 18px;"&gt;&lt;br /&gt;FAQ&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/strong&gt;&lt;p&gt;&lt;/p&gt;&lt;ol&gt;    &lt;li&gt;&lt;strong&gt;I've restored Windows XP but it won't boot.&lt;/strong&gt;&lt;br /&gt;    Make sure your 'boot.ini' file is correct for the restored system.    &lt;ol&gt;        &lt;li&gt;Use the &lt;a href="http://www.macrium.com/InstantKB20/KnowledgebaseArticle50011.aspx"&gt;'Fix Boot Problems'&lt;/a&gt; with Windows PE 2.0&lt;/li&gt;        &lt;li&gt;Or, use the &lt;a href="http://localhost/InstantKB20/KnowledgebaseArticle50011.aspx?Keywords=Fix"&gt;XP recovery console&lt;/a&gt; and run 'bootcfg /rebuild'.&lt;br /&gt;          &lt;/li&gt;    &lt;/ol&gt;    &lt;/li&gt;    &lt;li&gt;&lt;strong&gt;I've restored Windows Vista but it won't boot.&lt;/strong&gt;&lt;br /&gt;    The Boot Configuration Database (BCD) may be invalid.    &lt;br /&gt;    &lt;br /&gt;    Use the Vista &lt;a href="http://windows.microsoft.com/en-US/windows-vista/Startup-Repair-frequently-asked-questions"&gt;'Startup Recovery'&lt;/a&gt; option with your Vista installation DVD&lt;br /&gt;    &lt;br /&gt;    Or, use the &lt;a href="http://www.macrium.com/InstantKB20/KnowledgebaseArticle50011.aspx"&gt;'Fix Boot Problems'&lt;/a&gt; with Windows PE 2.0&lt;/li&gt;    &lt;li&gt;&lt;strong&gt;Can I restore to the same drive that contains the image file?&lt;/strong&gt;&lt;br /&gt;    Yes, but don't attempt to format the drive first!    &lt;br /&gt;    &lt;strong&gt;&lt;br /&gt;    &lt;/strong&gt;&lt;/li&gt;    &lt;li&gt;&lt;strong&gt;Why are there several 'skipped' directories and files shown in the log file?&lt;/strong&gt;&lt;a href="http://www.macrium.com/blog/ct.ashx?id=20a97aeb-f0e5-4b21-bcb0-fc82c9d46a0c&amp;amp;url=http%3a%2f%2fen.wikipedia.org%2fwiki%2fNTFS_junction_point"&gt;&lt;strong&gt;&lt;br /&gt;    Junction points:&lt;/strong&gt;&lt;/a&gt; Junction points are pointers to other directories and robocopy doesn't create or follow these junctions. When robocopy has finished the junction points are automatically created by RoboRestore. Vista makes extensive use of junction points for directories such as 'C:\Documents and Settings' and many others. These are provided for backward compatibility with Windows XP. &lt;br /&gt;    &lt;br /&gt;    &lt;strong&gt;'pagefile.sys' and 'hiberfil.sys':&lt;/strong&gt; These files are created when Windows boots and it isn't necessary to copy these files from the image.&lt;br /&gt;    &lt;strong&gt;System Volume Information:&lt;/strong&gt; This is a hidden system folder in the root of the volume and contains restore point information. The destination has already created this folder when the volume was formatted.   &lt;br /&gt;      &lt;/li&gt;    &lt;li&gt;&lt;strong&gt;What are the 'Extras' reported in the copy summary?&lt;/strong&gt;&lt;br /&gt;    These are files and folders that exist in the destination that weren't in the image file. For a newly formatted destination these refer to files in the system folder '\System Volume Information'. This is normal and expected.    &lt;br /&gt;    &lt;ol&gt;        &lt;ol&gt;        &lt;/ol&gt;    &lt;/ol&gt;    &lt;/li&gt;&lt;/ol&gt;&lt;strong&gt;&lt;span style="font-size: 18px;"&gt;&lt;br /&gt; &lt;br /&gt;&lt;hr /&gt;&lt;span xmlns="http://www.w3.org/1999/xhtml"&gt;Resources&lt;/span&gt;&lt;/span&gt;&lt;/strong&gt;&lt;p&gt;Robocopy reference - &lt;a href="http://en.wikipedia.org/wiki/Robocopy"&gt;http://en.wikipedia.org/wiki/Robocopy&lt;/a&gt;&lt;br /&gt;Windows Server 2003 Resource Kit Tools - &lt;a href="http://www.microsoft.com/Downloads/details.aspx?FamilyID=9d467a69-57ff-4ae7-96ee-b18c4790cffd&amp;amp;displaylang=en"&gt;http://www.microsoft.com/Downloads/details.aspx?FamilyID=9d467a69-57ff-4ae7-96ee-b18c4790cffd&amp;amp;displaylang=en&lt;/a&gt;&lt;/p&gt;&lt;p&gt;How to create a BartPE Rescue CD for Macrium Reflect - &lt;a href="http://www.macrium.com/blog/2008/09/22/HowToCreateABartPERescueCDForMacriumReflect.aspx"&gt;http://www.macrium.com/blog/2008/09/22/HowToCreateABartPERescueCDForMacriumReflect.aspx&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Vista Startup recovery - &lt;a href="http://windowshelp.microsoft.com/Windows/en-US/help/5c59f8c1-b0d1-4f1a-af55-74f3922f3f351033.mspx"&gt;http://windowshelp.microsoft.com/Windows/en-US/help/5c59f8c1-b0d1-4f1a-af55-74f3922f3f351033.mspx&lt;/a&gt;&lt;/p&gt;&lt;p&gt;XP Recovery Console - &lt;a href="http://support.microsoft.com/kb/314058"&gt;http://support.microsoft.com/kb/314058&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Windows PE 2.0 Recovery Environment - &lt;a href="http://www.macrium.com/blog/2009/07/27/HowToFixCommonBootProblemsUsingTheWindowsPE20FixBootProblemsOption.aspx"&gt;http://www.macrium.com/blog/2009/07/27/HowToFixCommonBootProblemsUsingTheWindowsPE20FixBootProblemsOption.aspx&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Master Boot Record - &lt;a href="http://en.wikipedia.org/wiki/Master_boot_record"&gt;http://en.wikipedia.org/wiki/Master_boot_record&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Junction Points - &lt;a href="http://en.wikipedia.org/wiki/NTFS_junction_point"&gt;http://en.wikipedia.org/wiki/NTFS_junction_point&lt;/a&gt;&lt;/p&gt;</description><pubDate>Sun, 19 Jul 2009 17:49:47 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>How to backup to a Server that isn't visible in the network browse dialog</title><link>http://www.macrium.com/KB/Goto50013.aspx</link><description>&lt;p style="text-align: center;"&gt;&lt;strong&gt;&lt;span style="font-size: 24px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;When you create an image or file and folder backup, sometimes your backup server isn't available in the network browse dialog. This article shows two methods to overcome this problem.&lt;/p&gt;&lt;p&gt;Normally, all available servers on the network are shown in the Network browse dialog shown below. However, there can be several reasons why servers are missing from the network tree, including NetBios name resolution issues.&lt;/p&gt;&lt;p style="text-align: center;"&gt; &lt;img alt="" style="border: 0px solid;" src="http://www.macrium.com/blog/content/binary/netdlg1.jpg" /&gt;&lt;/p&gt;&lt;p&gt;There are two methods to overcome this problem:&lt;/p&gt;&lt;p&gt;&lt;strong&gt;A. Map the server as a drive letter in Windows Explorer&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;If you map the server as a drive letter in Windows Explorer you can select the mapped drive letter in Reflect. &lt;/p&gt;&lt;ol&gt;    &lt;li&gt;First &lt;strong&gt;close Macrium Reflect&lt;/strong&gt;. This ensures that the local network cache is refreshed when you reopen the network browse dialog.&lt;/li&gt;    &lt;li&gt;&lt;strong&gt;Double click 'My Computer'&lt;/strong&gt; to start Windows Explorer and &lt;strong&gt;select the&lt;/strong&gt; &lt;strong&gt;'Tools' &amp;gt; 'Map Network Drive' menu&lt;/strong&gt; option.&lt;/li&gt;    &lt;li&gt;&lt;strong&gt;Select the drive letter to assign&lt;/strong&gt; and &lt;strong&gt;enter the full UNC path of your network share&lt;/strong&gt; in the form '\\server\share'&lt;/li&gt;    &lt;li&gt;Start Reflect again and step through the backup Wizard to the 'Backup Destination' page. This time &lt;strong&gt;select 'Local Hard Disk'&lt;/strong&gt; and &lt;strong&gt;browse to the drive letter&lt;/strong&gt; just mapped.&lt;br /&gt;    &lt;strong&gt;&lt;br /&gt;    Note:&lt;/strong&gt; When you save to your XML file the full UNC path not the mapped drive letter will be saved in the file. &lt;strong&gt;&lt;br /&gt;    &lt;br /&gt;    B: Edit the XML file manually and add the UNC path&lt;/strong&gt;&lt;/li&gt;&lt;/ol&gt;&lt;p&gt;Alternatively, you can edit the XML file in notepad and modify the backup destination to be the UNC path for your server.&lt;/p&gt;&lt;ol&gt;    &lt;li&gt;&lt;strong&gt;Step through the backup wizard&lt;/strong&gt; and &lt;strong&gt;select any folder &lt;/strong&gt;for your backup destination. Make sure you take the option to save your XML file at the end but don't run the backup.&lt;br /&gt;    &lt;/li&gt;    &lt;li&gt;    &lt;strong&gt;Select the newly created XML file&lt;/strong&gt; in the file list and &lt;strong&gt;click the 'XML View' tab&lt;/strong&gt;. Start &lt;strong&gt;typing in the XML text&lt;/strong&gt; window and the 'XML Edit' dialog will pop up. &lt;strong&gt;Select the 'Use the default XML editor'&lt;/strong&gt; and &lt;strong&gt;click OK&lt;/strong&gt;. This will open the file in notepad.&lt;br /&gt;    &lt;br /&gt;    &lt;div style="text-align: center;"&gt;&lt;img alt="" style="border: 0px solid;" src="http://www.macrium.com/blog/content/binary/xmledit.jpg" /&gt;&lt;br /&gt;    &lt;br /&gt;    &lt;/div&gt;    &lt;/li&gt;    &lt;li&gt;    Scroll to the following text and change the target folder to be the full UNC path to your backup server:&lt;br /&gt;    &lt;br /&gt;    &lt;div style="text-align: center;"&gt;&lt;img alt="" style="border: 0px solid;" src="http://www.macrium.com/blog/content/binary/editxml.jpg" /&gt;&lt;br /&gt;    &lt;/div&gt;    &lt;/li&gt;    &lt;li&gt;Save the file when finished.&lt;/li&gt;&lt;/ol&gt;&lt;p&gt;&lt;strong&gt;Note:&lt;/strong&gt; If the share is password protected then you need to enter the user name and password in the network defaults otherwise scheduled backups may fail. Take the 'Other Tasks' &amp;gt; 'Defaults' menu option.&lt;/p&gt;</description><pubDate>Fri, 10 Jul 2009 17:49:47 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>How to create a BartPE Rescue CD for Macrium Reflect</title><link>http://www.macrium.com/KB/Goto50035.aspx</link><description>&lt;p&gt;&lt;strong&gt;&lt;span style="font-size: 24px;"&gt;&lt;/span&gt;&lt;/strong&gt;So, you’ve created your Linux based recovery CD, you push it in and boot up and it doesn’t find your hard drives, network or both – what’s next?&lt;/p&gt;&lt;p&gt;If the Linux Based Recovery CD option doesn’t work for you – usually because it has trouble recognizing your disk or network cards - then you may want to use the BartPE or Windows PE 2.0 recovery CDs. &lt;/p&gt;&lt;p&gt;BartPE is a freely available preinstallation environment for 32-bit Windows XP or Server 2003. It's a bootable environment created from your exisiting Windows system files. It can also potentially support your RAID controller although that is not going to be covered by this article. If you do want to add RAID support to Bart PE then the best place to start is on the PE Builder website.&lt;/p&gt;&lt;p&gt;If you're working with 64-bit Windows, Windows Vista or Server 2008 then you'll need the full version of Macrium Reflect which includes paid-for licensing for Windows PE 2.0. The Windows PE 2.0 environment includes RAID support.&lt;/p&gt;&lt;p&gt;BartPE has the benefit of providing a graphical user interface and a plugin architecture that means many 3rd party custom plugins are available. Macrium Reflect provides a plugin that allows you to restore files and partitions directly once you are booted from your CD/DVD drive into BartPE.&lt;/p&gt;&lt;p&gt;Anyway, to business; you will need:&lt;/p&gt;&lt;ul&gt;    &lt;li&gt;Access to Windows XP or Windows 2003 installation files &lt;/li&gt;    &lt;li&gt;The latest PE Builder install file (the BartPE rescue disk creation software). You can download it via &lt;a href="http://www.nu2.nu/pebuilder/#download"&gt;http://www.nu2.nu/pebuilder/#download&lt;/a&gt; &lt;/li&gt;    &lt;li&gt;Macrium Reflect installed&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;strong&gt;Note:&lt;/strong&gt; BartPE is only suitable for 32-bit Windows XP and 32-bit Windows Server 2003 environments.&lt;br /&gt;&lt;br /&gt;To create your BartPE / Macrium Reflect Rescue CD:&lt;/p&gt;&lt;ol&gt;    &lt;li&gt;Install PE Builder from the install file you downloaded earlier&lt;br /&gt;    &lt;br /&gt;    Make a note of where PE Builder is installed. The default location is similar to C:\PEBuilder3110a&lt;/li&gt;    &lt;li&gt;Finish the installation by allowing it to run to check it works.&lt;br /&gt;    &lt;br /&gt;    You are presented with a Search files?&lt;br /&gt;    &lt;br /&gt;    &lt;div style="text-align: center;"&gt;&lt;img alt="" style="border: 0px solid;" src="http://www.macrium.com/blog/content/binary/PR01_search.jpg" /&gt;&lt;br /&gt;    &lt;/div&gt;    &lt;/li&gt;    &lt;li&gt;&lt;strong&gt;Click No&lt;/strong&gt;&lt;br /&gt;    &lt;br /&gt;    The main PE Builder dialog is displayed. We shall return to this once we’ve configured the Macrium Reflect plugin from within Macrium Reflect&lt;br /&gt;      &lt;/li&gt;    &lt;li&gt;&lt;strong&gt;Start Macrium Reflect&lt;br /&gt;      &lt;/strong&gt;&lt;/li&gt;    &lt;li&gt;Select &lt;strong&gt;Other Tasks &amp;gt; Create Rescue CD&lt;/strong&gt;&lt;br /&gt;    &lt;br /&gt;    The Rescue CD Wizard is displayed&lt;br /&gt;    &lt;br /&gt;    &lt;div style="text-align: center;"&gt;&lt;img alt="" style="border: 0px solid;" src="http://www.macrium.com/blog/content/binary/selectbart.JPG" /&gt;&lt;br /&gt;    &lt;br /&gt;    &lt;/div&gt;    &lt;/li&gt;    &lt;li&gt;&lt;strong&gt;Select BartPE&lt;/strong&gt; and &lt;strong&gt;click Next&lt;/strong&gt;&lt;br /&gt;    &lt;br /&gt;    This displays a dialog for copying the necessary Macrium Reflect plugin files to the BartPE plugin folder.&lt;br /&gt;    &lt;br /&gt;    &lt;br /&gt;    &lt;div style="text-align: center;"&gt;&lt;img alt="" style="border: 0px solid;" src="http://www.macrium.com/blog/content/binary/03_RescueFresh.png" /&gt;&lt;br /&gt;    &lt;br /&gt;    &lt;/div&gt;    &lt;/li&gt;    &lt;li&gt;&lt;strong&gt;Click Updates &lt;/strong&gt;to check online for updates to the Macrium Reflect plugin&lt;br /&gt;      &lt;/li&gt;    &lt;li&gt;&lt;strong&gt;Click the browse button ‘…’&lt;/strong&gt; and &lt;strong&gt;select the plugin folder below the PEBuilder installation folder&lt;/strong&gt;. For example C:\PEBuilder3110a\plugin&lt;br /&gt;      &lt;/li&gt;    &lt;li&gt;&lt;strong&gt;Click Finish&lt;/strong&gt;&lt;br /&gt;    &lt;br /&gt;    The Macrium Reflect plugin is immediately copied to the PE Builder plugin folder.&lt;br /&gt;    &lt;br /&gt;    Now when you use PE Builder to create a BartPE rescue CD it contains the files necessary to run Macrium Reflect and restore disk images or files.&lt;br /&gt;      &lt;/li&gt;    &lt;li&gt;&lt;strong&gt;Return to PE Builder&lt;br /&gt;    &lt;br /&gt;    &lt;/strong&gt;If you closed it earlier then start it from the Start menu.&lt;br /&gt;    &lt;br /&gt;    &lt;div style="text-align: center;"&gt;&lt;img alt="" style="border: 0px solid;" src="http://www.macrium.com/blog/content/binary/PR51_createISO.jpg" /&gt;&lt;br /&gt;     &lt;br /&gt;    &lt;/div&gt;    &lt;/li&gt;    &lt;li&gt;&lt;strong&gt;Specify the path to your Windows installation files in the Source text box&lt;br /&gt;     &lt;br /&gt;    &lt;/strong&gt;For me these were on my original Microsoft installation CD/DVD which occupied the only drive bay on my server – more on that later. If you believe they may be on your hard drive but don’t know where then you can search for them by &lt;strong&gt;selecting menu Source &amp;gt; Search&lt;/strong&gt;. Otherwise, simply select their location&lt;strong&gt;&lt;br /&gt;    &lt;br /&gt;    Note:&lt;/strong&gt; The directory that contains the Windows installation files is called ‘i386’ but the path that PE Builder wants is the parent directory to ‘i386’. So, if you have your installation files at ‘c:\i386’ then you need to enter ‘C:\’ as the path to the Windows installation files.&lt;br /&gt;      &lt;/li&gt;    &lt;li&gt;&lt;strong&gt;Leave the Custom text box empty&lt;br /&gt;         &lt;br /&gt;    &lt;/strong&gt;&lt;/li&gt;    &lt;li&gt;&lt;strong&gt;Leave the Output folder as BartPE&lt;/strong&gt; or point it to a location suitable for storing 153Mb of data&lt;br /&gt;      &lt;/li&gt;    &lt;li&gt;&lt;strong&gt;Select the Media Output.&lt;/strong&gt;&lt;br /&gt;    You may be able to directly Burn to CD/DVD at this point. I couldn’t because, as I mentioned, the DVD drive was already in use for my Windows installation files. Instead we selected Create ISO image and resolved to burn it to disk later. An ISO image is a complete disk image as a file.&lt;strong&gt;&lt;br /&gt;    &lt;br /&gt;    Note:&lt;/strong&gt; Your CD/DVD burning software may or may not support ISO. If it doesn’t, it is often an extra cost option that you get for buying the full version. Alternatively, you could use CDBurnerXP; a free utility that you can download from &lt;a href="http://www.cdburnerxp.se/"&gt;http://www.cdburnerxp.se/&lt;/a&gt;. &lt;br /&gt;      &lt;/li&gt;    &lt;li&gt;&lt;strong&gt;Click Build&lt;/strong&gt;&lt;br /&gt;    &lt;br /&gt;    If the BartPE folder does not exist then the Create directory dialog is displayed&lt;br /&gt;    &lt;br /&gt;    &lt;div style="text-align: center;"&gt;&lt;img alt="" style="border: 0px solid;" src="http://www.macrium.com/blog/content/binary/PR52_createBartFolder.jpg" /&gt;&lt;br /&gt;    &lt;/div&gt;    &lt;/li&gt;    &lt;li&gt;    &lt;strong&gt;Click Yes&lt;/strong&gt; to create the folder and continue&lt;br /&gt;    &lt;br /&gt;    BartPE uses your Windows XP or Server 2003 installation files and so you need to read and agree to the Windows license before proceeding.&lt;br /&gt;    &lt;br /&gt;    &lt;div style="text-align: center;"&gt;&lt;img alt="" style="border: 0px solid;" src="http://www.macrium.com/blog/content/binary/PR53_MSLicense.jpg" /&gt;&lt;br /&gt;    &lt;/div&gt;    &lt;/li&gt;    &lt;li&gt;    If you agree with the terms &lt;strong&gt;click I agree &lt;br /&gt;    &lt;/strong&gt;&lt;br /&gt;    PE Builder builds the BartPE installation. In my case, as an ISO file:&lt;br /&gt;    &lt;br /&gt;    &lt;div style="text-align: center;"&gt;&lt;img alt="" style="border: 0px solid;" src="http://www.macrium.com/blog/content/binary/PR55_doneISO1.jpg" /&gt;&lt;br /&gt;    &lt;/div&gt;    &lt;/li&gt;    &lt;li&gt;    &lt;strong&gt;Click Close&lt;/strong&gt; to finish&lt;/li&gt;&lt;/ol&gt;&lt;p&gt;&lt;em&gt;That’s it!&lt;/em&gt; You may now eject your BartPE CD/DVD and check it by using it to boot your machine.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Note:&lt;/strong&gt; If your machine isn't set to boot from CD/DVD then you need to adjust the boot settings in your BIOS. Accessing the BIOS varies from PC to PC but you will always see a brief message that tells you how to do this as the PC is starting. Power on your PC and watch the screen carefully. Look for a line of text that says something like, 'Hit Del to enter setup' or 'Press F2 for BIOS settings'. Once you've found the correct key (generally, Del, or one of the function keys), press it repeatedly until you see a BIOS setup screen - from there you can set the boot order so that CD/DVD takes precedence over your hard disk drive (HDD). You can find pictures of BIOS setup screens at &lt;a href="http://www.hiren.info/pages/bios-boot-cdrom"&gt;http://www.hiren.info/pages/bios-boot-cdrom&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Once booted into BartPE, to start restoring files or partitions, &lt;strong&gt;select Go &amp;gt; Programs &amp;gt; Macrium Reflect&lt;/strong&gt;.&lt;/p&gt;</description><pubDate>Mon, 22 Sep 2008 17:49:47 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>How to recover your PC using the Linux Rescue CD - Part II</title><link>http://www.macrium.com/KB/Goto50034.aspx</link><description>&lt;hr /&gt;This is the second part of the fifth tutorial in our series on working with Macrium Reflect. Last time we created a Linux rescue CD. This time I'll show you how to restore your 'drive C' image using this Rescue CD and return your PC to exactly the same state as it was when the image was created.&lt;p&gt;Don't let the word Linux scare you! You don't need to know anything about Linux. The restore program uses an XP style wizard with familiar mouse and keyboard operation.  &lt;/p&gt;&lt;p&gt;I've included an FAQ section at the end to help those of you that may have issues with the restore process.&lt;/p&gt;&lt;p&gt;OK, let's begin...&lt;/p&gt;&lt;ol&gt;    &lt;li&gt;Put your CD in the CD tray and start your PC. After a few seconds the first introductory page will be shown. Click Next.&lt;br /&gt;    &lt;br /&gt;    &lt;div style="text-align: center;"&gt;&lt;img alt="" style="border: 0px solid;" src="http://www.macrium.com/blog/content/binary/1.jpg" /&gt;&lt;br /&gt;    &lt;/div&gt;    &lt;/li&gt;    &lt;li&gt;The next page shows locally attached drives and partitions labelled as drive letters like Windows.&lt;strong&gt;&lt;br /&gt;    &lt;br /&gt;    Note:&lt;/strong&gt; These letters may be different to your Windows drive letter assignments. This is because Windows assigns, and remembers drive letters as you attach devices, the rescue CD assigns letters as devices are detected during start-up.&lt;br /&gt;    &lt;br /&gt;    &lt;div style="text-align: center;"&gt;&lt;img alt="" style="border: 0px solid;" src="http://www.macrium.com/blog/content/binary/3.jpg" /&gt;&lt;br /&gt;    &lt;/div&gt;    &lt;br /&gt;    Select the directory that contains the image you are restoring.&lt;strong&gt;&lt;br /&gt;    &lt;br /&gt;    Note:&lt;/strong&gt; Clicking the folder icon or the +/- icon expands the directory/drive node. &lt;strong&gt;You must click the directory name to select the contents of the directory&lt;/strong&gt;.&lt;br /&gt;    &lt;br /&gt;    If your image is stored on a network share then &lt;strong&gt;click the 'Map Share' button&lt;/strong&gt;.&lt;br /&gt;     &lt;br /&gt;    &lt;div style="text-align: center;"&gt;&lt;img alt="" style="border: 0px solid;" src="http://www.macrium.com/blog/content/binary/2.jpg" /&gt;&lt;br /&gt;    &lt;/div&gt;    &lt;br /&gt;    Simply enter the share and user name details to add a network share to the 'Network Neighborhood' tree node.&lt;strong&gt;&lt;br /&gt;    &lt;br /&gt;    Note:&lt;/strong&gt; Make sure your network share is using WORKGROUP as the Workgroup name.&lt;br /&gt;    &lt;br /&gt;    Once you select the directory that contains your image file, the right window lists all partitions in all image file in the chosen directory.&lt;br /&gt;    &lt;br /&gt;    Select the correct partition image in the right windows and &lt;strong&gt;click 'Next'&lt;/strong&gt;.&lt;br /&gt;      &lt;/li&gt;    &lt;li&gt;The next page shows the details of all partitions saved in the chosen image file. In our case we have only one, but you could have many partitions from different drives. &lt;br /&gt;    &lt;br /&gt;    &lt;strong&gt;Select (C:) and click 'Next'&lt;/strong&gt;&lt;br /&gt;    &lt;br /&gt;    &lt;div style="text-align: center;"&gt;&lt;img alt="" style="border: 0px solid;" src="http://www.macrium.com/blog/content/binary/4.jpg" /&gt;&lt;br /&gt;     &lt;br /&gt;    &lt;/div&gt;    &lt;/li&gt;    &lt;li&gt;You are now presented with the contents of all locally attached hard disks.&lt;br /&gt;    &lt;br /&gt;    You can restore this partition anywhere, you can even restore to free space on any disk. &lt;br /&gt;    &lt;br /&gt;    &lt;div style="text-align: center;"&gt;&lt;img alt="" style="border: 0px solid;" src="http://www.macrium.com/blog/content/binary/5.jpg" /&gt;&lt;br /&gt;    &lt;/div&gt;    &lt;br /&gt;    For this example we'll restore our saved partition to the whole of 'Disk 1'. All we have to do is select both the tick boxes on the first hard disk. &lt;strong&gt;Hold down the 'Ctrl' key and select both boxes&lt;/strong&gt;.&lt;br /&gt;    &lt;br /&gt;    &lt;div style="text-align: center;"&gt;&lt;img alt="" style="border: 0px solid;" src="http://www.macrium.com/blog/content/binary/5A.jpg" /&gt;&lt;br /&gt;    &lt;/div&gt;    &lt;strong&gt;&lt;br /&gt;    Click 'Next'&lt;/strong&gt; to continue.&lt;strong&gt;&lt;br /&gt;    &lt;br /&gt;    Note:&lt;/strong&gt; You must select at &lt;strong&gt;least &lt;/strong&gt;the same size as the partition you are restoring otherwise the 'Next' button won't be available. If necessary use the 'Total Selected' value at the bottom of the dialog as a guide.&lt;br /&gt;      &lt;/li&gt;    &lt;li&gt;The next page allows you to select the type of partition to create when you restore. This flexibility gives you the ability to create logical partitions from primary and vice versa. For most restores this isn't necessary and the default partition type will be the partition type you originally imaged. For your Windows system partition you should always &lt;strong&gt;select 'Active'&lt;/strong&gt;. This will be defaulted for you so just click &lt;strong&gt;'Next' to continue&lt;/strong&gt;.&lt;br /&gt;    &lt;br /&gt;    &lt;div style="text-align: center;"&gt;&lt;img alt="" style="border: 0px solid;" src="http://www.macrium.com/blog/content/binary/6.jpg" /&gt;&lt;br /&gt;     &lt;br /&gt;    &lt;/div&gt;    &lt;/li&gt;    &lt;li&gt;Because we selected a larger size to overwrite than the original partition size we now have the opportunity to extend the restored partition to fill the selected space (the whole disk in this case).&lt;strong&gt;&lt;br /&gt;    &lt;br /&gt;    Note:&lt;/strong&gt; If you just restore to the original partition that you saved, then you won't see this page.&lt;br /&gt;    &lt;br /&gt;    &lt;div style="text-align: center;"&gt;&lt;img alt="" style="border: 0px solid;" src="http://www.macrium.com/blog/content/binary/7.jpg" /&gt;&lt;br /&gt;     &lt;br /&gt;    &lt;/div&gt;    &lt;strong&gt;&lt;br /&gt;    Drag the slider to the right&lt;/strong&gt; and &lt;strong&gt;click 'Next'&lt;/strong&gt;.&lt;br /&gt;      &lt;/li&gt;    &lt;li&gt;The next page allows you to verify the image before restoring. It is rare for an image to fail verification and this step can add a considerable amount of time to the restore process. The restoration will abort if any part of the image file is corrupt. However, if you are restoring to a new disk or if the partition you are replacing is already corrupt, then it isn't strictly necessary to verify.&lt;br /&gt;    &lt;br /&gt;    &lt;div style="text-align: center;"&gt;&lt;img alt="" style="border: 0px solid;" src="http://www.macrium.com/blog/content/binary/8.jpg" /&gt;&lt;br /&gt;    &lt;/div&gt;    &lt;br /&gt;    For this example &lt;strong&gt;click 'No'&lt;/strong&gt; then &lt;strong&gt;click 'Next' &lt;/strong&gt;to continue.&lt;br /&gt;      &lt;/li&gt;    &lt;li&gt;The next page gives you options for restoring the Master Boot Record (MBR). &lt;br /&gt;    &lt;br /&gt;    The Master Boot Record a small program that executes when your PC starts up. If this program has become corrupt, perhaps due to a virus, then you may have problems starting your computer.&lt;br /&gt;    &lt;br /&gt;    Each backup contains a copy of the Master Boot Record which can be recovered by selecting 'Replace with the Master Boot Record from the backup'. This is the default option, so leave this selected and &lt;strong&gt;click 'Next'&lt;/strong&gt;.&lt;br /&gt;    &lt;br /&gt;    &lt;div style="text-align: center;"&gt;&lt;img alt="" style="border: 0px solid;" src="http://www.macrium.com/blog/content/binary/9.jpg" /&gt;&lt;br /&gt;     &lt;br /&gt;    &lt;/div&gt;    &lt;/li&gt;    &lt;li&gt;Windows can run an automatic verification of your file system when it starts. The next page allows you to force Windows to run this check when you first boot after restoring.&lt;br /&gt;    &lt;br /&gt;    For this example &lt;strong&gt;select 'No'&lt;/strong&gt; and &lt;strong&gt;click 'Next'&lt;/strong&gt;.&lt;br /&gt;    &lt;br /&gt;    &lt;div style="text-align: center;"&gt;&lt;img alt="" style="border: 0px solid;" src="http://www.macrium.com/blog/content/binary/10.jpg" /&gt;&lt;br /&gt;     &lt;br /&gt;    &lt;/div&gt;    &lt;/li&gt;    &lt;li&gt;We're now at the final Wizard page. This shows a summary of all your selections. &lt;strong&gt;Click 'Finish' &lt;/strong&gt;to begin the restore.&lt;br /&gt;    &lt;br /&gt;    &lt;div style="text-align: center;"&gt;&lt;img alt="" style="border: 0px solid;" src="http://www.macrium.com/blog/content/binary/11.jpg" /&gt;&lt;br /&gt;    &lt;/div&gt;    &lt;br /&gt;    Your restore will now begin. At the end you have the option to &lt;strong&gt;click 'Back'&lt;/strong&gt; and restore another partition or &lt;strong&gt;click 'Cancel'&lt;/strong&gt; to restart your PC.&lt;br /&gt;     &lt;br /&gt;    &lt;div style="text-align: center;"&gt;&lt;img alt="" style="border: 0px solid;" src="http://www.macrium.com/blog/content/binary/13.jpg" /&gt;&lt;br /&gt;    &lt;/div&gt;    &lt;br /&gt;    &lt;strong&gt;Click 'Cancel'&lt;/strong&gt; then &lt;strong&gt;click 'OK' &lt;/strong&gt;in the reboot message box.&lt;br /&gt;    &lt;br /&gt;    &lt;div style="text-align: center;"&gt;&lt;img alt="" style="border: 0px solid;" src="http://www.macrium.com/blog/content/binary/14.jpg" /&gt;&lt;br /&gt;     &lt;br /&gt;     &lt;br /&gt;      &lt;/div&gt;    &lt;/li&gt;&lt;/ol&gt;&lt;p&gt;&lt;em&gt;All Finished! &lt;/em&gt;The time taken for the restore process may be slightly longer than backup process. &lt;/p&gt;&lt;p&gt;There seems to be a lot of dialogs here, but most options are defaulted for you and clear explanations are provided on the relevant wizard pages. &lt;/p&gt;&lt;p&gt;In the next tutorial I'll cover the Windows PE 2.0 recovery environment. This environment has many more options to help you, including image browsing to recover individual files. &lt;br /&gt; &lt;/p&gt;&lt;hr /&gt;&lt;p&gt;&lt;span style="font-size: 18px;"&gt;&lt;strong&gt;FAQ&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;ul&gt;    &lt;li&gt;&lt;strong&gt;How do I restore an incremental or differential image?&lt;/strong&gt;&lt;br /&gt;    Incremental and differential images are restored in exactly the same way. Simply select the image by date and the restore process will locate the relevant files and recover your image automatically.&lt;/li&gt;    &lt;li&gt;&lt;strong&gt;Why is the 'Choose partitions to overwrite' wizard page empty?&lt;br /&gt;    &lt;br /&gt;    &lt;/strong&gt;The Linux Rescue CD cannot recognize your internal hard disk(s) therefore you cannot select any destination partition(s) to overwrite.&lt;br /&gt;    This is possibly because you are using an unrecognized SATA mode. Go to your BIOS settings for your main hard disk controller and check for an option like ‘Compatibility’ mode. If this doesn’t work or you can’t find any SATA option(s) to change then try the BartPE rescue CD or use Windows PE 2.0 rescue CD.&lt;strong&gt;&lt;br /&gt;    &lt;br /&gt;    Note:&lt;/strong&gt; Windows PE 2.0 is only available with registered version of Macrium Reflect.&lt;/li&gt;    &lt;li&gt;    &lt;strong&gt;I'm restoring an image from multiple DVDs but the restore wizard can't locate the image.&lt;/strong&gt;&lt;br /&gt;    &lt;br /&gt;    You must place the last DVD in the CD tray first. The final part of any image contains the image index.&lt;/li&gt;    &lt;li&gt;&lt;strong&gt;When I select the directory containing my image file nothing is displayed&lt;/strong&gt;.&lt;br /&gt;    &lt;br /&gt;    You must click on the directory name to select the directory contents. &lt;/li&gt;    &lt;li&gt;&lt;strong&gt;My computer won't boot with my new hard disk.&lt;/strong&gt;&lt;br /&gt;    &lt;br /&gt;    This can be caused by XP not recognising your new disk. XP sometimes needs a driver for recent SATA disks running in AHCI mode. To fix this problem you may have to modify your BIOS settings to enable 'Legacy Mode', 'IDE Mode' or similar. When XP boots you should then locate and install the correct SATA drivers, then change your BIOS settings to match the driver.&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Alternatively, your 'boot.ini' file may be incorrectly set up. This file is automatically adjusted during the restore process so you normally won't have a problem with this. However, to correct any errors with this file and other boot related issues you should locate your original XP installation disk and start the XP recovery console. Details about this can be found here:&lt;/p&gt;&lt;p&gt;&lt;a href="http://support.microsoft.com/kb/314058"&gt;http://support.microsoft.com/kb/314058&lt;/a&gt; &lt;/p&gt;&lt;p&gt;&lt;a href="http://technet2.microsoft.com/windowsserver/en/library/1ed79310-13ee-4352-8e1b-bbb59bc15b961033.mspx?mfr=true"&gt;http://technet2.microsoft.com/windowsserver/en/library/1ed79310-13ee-4352-8e1b-bbb59bc15b961033.mspx?mfr=true&lt;/a&gt; &lt;/p&gt;&lt;p&gt;The relevant commands for fixing boot related issues are:&lt;/p&gt;&lt;p&gt;&lt;strong&gt;fixboot:&lt;/strong&gt; Replaces the partition boot sector&lt;br /&gt;&lt;strong&gt;fixmbr:&lt;/strong&gt; Replaces the MBR. &lt;br /&gt;&lt;strong&gt;bootcfg /rebuild:&lt;/strong&gt; Rebuilds the boot.ini file&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Note:&lt;/strong&gt; If you have the Windows PE recovery environment then there's an option 'Fix Boot Problems' that runs these commands and others automatically for you.&lt;/p&gt;</description><pubDate>Mon, 30 Jun 2008 17:49:47 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>How to recover your PC using the Linux Rescue CD - Part I</title><link>http://www.macrium.com/KB/Goto50033.aspx</link><description>&lt;hr /&gt;&lt;p&gt;In part five of our series on working with Macrium Reflect, we look at restoring your system using the Linux rescue CD.  In this two part tutorial I’ll show you how to create a Rescue CD and we'll follow all the steps required to put your PC back to the exact state it was at the time of your image. We'll pretend that your PC has been infected with a nasty virus and you have to restore your operating system to the pre-virus state.&lt;/p&gt;&lt;p&gt; &lt;br /&gt;  &lt;/p&gt;&lt;hr /&gt;&lt;p&gt;&lt;strong&gt;&lt;span style="font-size: 18px;"&gt;Why do you need a rescue CD?&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;This is a good question. The simple answer is because Windows won't let you access all the files on your hard disk. Windows uses both the RAM (main memory) and the hard disk during normal operation. Many of the thousands of files in your Windows system directory are open and running to keep your PC humming along. You can't simply replace them with a different version because they may be loaded into memory and inaccessible from the disk. The only way you can freely access every part of your system partition is to start your PC with another operating system that loads &lt;strong&gt;entirely&lt;/strong&gt; into RAM. &lt;strong&gt;Enter Linux&lt;/strong&gt;.  Linux can have a very small footprint and is ideal for this task. The rescue CD that ships with Macrium Reflect is only 6MB in size, but still provides USB, Fire wire, network and disk services and has a nice GUI as well.&lt;br /&gt;&lt;br /&gt;Let's start by burning the Linux CD… &lt;/p&gt;&lt;ol&gt;    &lt;li&gt;Start Reflect, &lt;strong&gt;click the ‘Other Tasks’ panel&lt;/strong&gt;, and then &lt;strong&gt;click the ‘Create a boot-able Rescue CD’ option.&lt;br /&gt;    &lt;br /&gt;    &lt;/strong&gt;    &lt;div style="text-align: center;"&gt;&lt;strong&gt;&lt;img alt="" src="http://www.macrium.com/blog/content/binary/rcd1.jpg" /&gt;&lt;/strong&gt;&lt;br /&gt;    &lt;/div&gt;    &lt;strong&gt;    &lt;br /&gt;    &lt;/strong&gt;&lt;/li&gt;    &lt;li&gt;The Rescue CD wizard will open.&lt;br /&gt;    &lt;br /&gt;    &lt;div style="text-align: center;"&gt;&lt;img alt="" src="http://www.macrium.com/blog/content/binary/rcd2.jpg" style="border: 0px solid;" /&gt;&lt;br /&gt;    &lt;/div&gt;    &lt;br /&gt;    Ensure that &lt;strong&gt;the Linux option&lt;/strong&gt; &lt;strong&gt;is selected&lt;/strong&gt; and &lt;strong&gt;click 'Next'&lt;/strong&gt;.&lt;/li&gt;    &lt;li&gt;The next Wizard page is the burn page.&lt;br /&gt;    &lt;br /&gt;    &lt;div style="text-align: center;"&gt;&lt;img alt="" src="http://www.macrium.com/blog/content/binary/rcd3.jpg" style="border: 0px solid;" /&gt;&lt;br /&gt;    &lt;/div&gt;    &lt;br /&gt;    Put an empty or erasable CD or DVD in your burner and &lt;strong&gt;click 'Finish'&lt;/strong&gt;. It's better to use non-erasable CD-R or DVD+/-R media. This tends to be more reliable than RW media for booting. That's all you need to do.&lt;strong&gt;&lt;br /&gt;    &lt;br /&gt;    Note:&lt;/strong&gt; If your CD burner has problems creating the disc, you can save the image to a special file called an ISO image file. &lt;strong&gt;Click on the CD/DVD burner drop-down list and select 'Create ISO image file'&lt;/strong&gt;. You can then use any burning software that you have on your PC to create the rescue CD.&lt;br /&gt;    &lt;br /&gt;    If your PC refuses to boot with the rescue CD, then return to this wizard and &lt;strong&gt;click the 'Advanced' button&lt;/strong&gt;. This allows you to create a special 'compatibility mode' disc which should allow even the most stubborn PC to boot with the rescue CD. &lt;/li&gt;&lt;/ol&gt;&lt;br /&gt;&lt;hr /&gt;&lt;p&gt;&lt;strong&gt;&lt;span style="font-size: 18px;"&gt;The boot process&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;Now I'll take you through the boot process. We are going to start your PC using the Rescue CD. Windows is not used at all in this process, everything is down to Linux. &lt;/p&gt;&lt;p&gt;Normally, when your PC starts, the first action is to load a small program from your hard disk called the Master Boot Record (MBR). The MBR knows how to continue the boot process and passes control to the giant operating system that's residing on your hard disk - Windows. We're not going to let that happen this time, instead we're going to allow the Rescue CD to take control. &lt;/p&gt;&lt;p&gt;Your PC has to be configured to check the CD/DVD drive to see if it can boot from there. It has to do this before it checks the hard disk and this can only be configured in a special place called the BIOS. Many PC's are pre-configured to make this check and the simplest way to find out is to put your Rescue CD in the CD tray and start your PC. You should start from cold, that is, power off the PC and then press the on button. If you see your normal Windows start up screen then we've got some more work to do, if you see a message saying 'Loading Linux....' then you can skip the next bit.&lt;br /&gt; &lt;br /&gt;  &lt;/p&gt;&lt;hr /&gt;&lt;p&gt;&lt;strong&gt;&lt;span style="font-size: 18px;"&gt;Configuring your PC to start from the CD/DVD drive.&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;As I mentioned this can only be set up from the BIOS. Accessing the BIOS varies from PC to PC but you will always see a brief message that tells you how to do this as the PC is starting. Power on your PC and watch the screen carefully. Look for a line of text that says something like, 'Hit Del to enter setup' or 'Press F2 for BIOS settings'. Once you've found the correct key (generally, Del, or one of the function keys), press it repeatedly until you see a BIOS setup screen.&lt;/p&gt;&lt;p&gt;I won't repeat many articles already on the internet about setting your BIOS to boot from CD. You can find pictures of BIOS setup screens and instructions here: &lt;a href="http://www.hiren.info/pages/bios-boot-cdrom"&gt;http://www.hiren.info/pages/bios-boot-cdrom&lt;/a&gt; .&lt;/p&gt;&lt;p&gt;Once you've changed the BIOS settings correctly your PC should load the Macrium Rescue CD very quickly. It's only 6MB in size and you should be at the first wizard page in less than 30 seconds.&lt;/p&gt;&lt;p&gt;In part II of this tutorial we'll step through the restore wizard and get your system back.&lt;/p&gt;&lt;p&gt; &lt;/p&gt;</description><pubDate>Sat, 21 Jun 2008 17:49:47 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>How to use VBScript with Macrium Reflect</title><link>http://www.macrium.com/KB/Goto50037.aspx</link><description>&lt;p style="text-align: center;"&gt;&lt;strong&gt;&lt;span style="font-size: 24px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/strong&gt; &lt;/p&gt;&lt;p&gt;In part four of our series on working with Macrium Reflect, 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 full and incremental 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;OK, let’s begin… &lt;/p&gt;&lt;p&gt;1.Start Reflect,&lt;strong&gt; click the ‘XML Definitions’ tab&lt;/strong&gt;, select the ‘C Full Image’ XML file and then click the &lt;strong&gt;‘Generate VBScript’ button.&lt;/strong&gt; &lt;br /&gt;&lt;br /&gt;&lt;img alt="" width="428" height="155" src="http://update.macrium.com/reflect/tutorial/Part%204/1.jpg" /&gt;&lt;br /&gt;&lt;br /&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;br /&gt;&lt;br /&gt;&lt;img alt="" width="653" height="388" src="http://update.macrium.com/reflect/tutorial/Part%204/2.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 full 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;3.&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;br /&gt;&lt;img alt="" src="http://update.macrium.com/reflect/tutorial/Part%204/3.jpg" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&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;/p&gt;&lt;p&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;&lt;br /&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;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, Notepad.exe. 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;span style="font-family: courier new; font-size: 13px;"&gt;&lt;br /&gt;ExitCode = Backup (&lt;span style="color: #a31515;"&gt;"""C:\Program Files\Macrium\Reflect\reflect.exe"" -e -w ""C:\Users\Annette\Reflect\C Full Image.xml"""&lt;/span&gt;)&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: arial;"&gt;And replace it with:&lt;br /&gt;&lt;br /&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;br /&gt;&lt;/span&gt;&lt;span style="font-family: courier new; font-size: 13px;"&gt;&lt;span style="color: #008000;"&gt;    ' Run the full image&lt;br /&gt;&lt;/span&gt;    ExitCode = Backup (&lt;span style="color: #a31515;"&gt;"""C:\Program Files\Macrium\Reflect\reflect.exe"" -e -w ""C:\Users\Annette\Reflect\C Full Image.xml"""&lt;/span&gt;)&lt;br /&gt;&lt;/span&gt;&lt;span style="font-family: courier new; font-size: 13px; color: #0000ff;"&gt;Else&lt;br /&gt;&lt;/span&gt;&lt;span style="font-family: courier new; font-size: 13px;"&gt;&lt;span style="color: #008000;"&gt;    ' Run the Incremental image&lt;br /&gt;&lt;/span&gt;    ExitCode = Backup (&lt;span style="color: #a31515;"&gt;"""C:\Program Files\Macrium\Reflect\reflect.exe"" -e -w ""C:\Users\Annette\Reflect\C Incremental Image.xml"""&lt;/span&gt;)&lt;br /&gt;&lt;span style="font-size: 13px; color: #0000ff;"&gt;End If&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&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 &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: arial;"&gt;&lt;strong&gt;A quick summary of the functions used above: &lt;/strong&gt;&lt;br /&gt; &lt;br /&gt;The Date keyword is the current system date. &lt;br /&gt; &lt;br /&gt;The Weekday function returns the day of the week as a number. 1 = Sunday, 2 = Monday etc. &lt;br /&gt; &lt;br /&gt;DateAdd 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;/p&gt;&lt;p&gt;&lt;span style="font-family: arial;"&gt;The Month 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;/p&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 the incremental XML definition 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;/span&gt;&lt;/p&gt;&lt;p&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;/p&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;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;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. 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;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;span xmlns="http://www.w3.org/1999/xhtml"&gt; &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span xmlns="http://www.w3.org/1999/xhtml"&gt; &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span xmlns="http://www.w3.org/1999/xhtml"&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;&lt;p&gt;&lt;/p&gt;</description><pubDate>Tue, 10 Jun 2008 17:49:47 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>Italian Macrium Reflect Free Edition Video Tutorials</title><link>http://www.macrium.com/KB/Goto50038.aspx</link><description>&lt;p&gt;&lt;strong&gt;&lt;br /&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;Prof. Antonio Cantaro (&lt;a rel="nofollow" href="http://www.macrium.com/blog/ct.ashx?id=f87b7463-7adc-4bfd-9c51-8751a6ce73a5&amp;amp;url=http%3a%2f%2fwww.istitutomajorana.it"&gt;http://www.istitutomajorana.it&lt;/a&gt;) has produced 10excellent video tutorials for Macrium Reflect.&lt;/p&gt;&lt;p&gt;These can be viewed here: &lt;a rel="nofollow" href="http://www.macrium.com/blog/ct.ashx?id=f87b7463-7adc-4bfd-9c51-8751a6ce73a5&amp;amp;url=http%3a%2f%2fwww.istitutomajorana.it%2findex.php%3foption%3dcom_content%26task%3dview%26id%3d762%26Itemid%3d33"&gt;http://www.istitutomajorana.it/index.php?option=com_content&amp;amp;task=view&amp;amp;id=762&amp;amp;Itemid=33&lt;/a&gt;&lt;/p&gt;</description><pubDate>Wed, 16 Apr 2008 17:49:47 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>How to schedule your images</title><link>http://www.macrium.com/KB/Goto50036.aspx</link><description>&lt;p style="text-align: center;"&gt;&lt;strong&gt;&lt;span style="font-size: 24px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;In part three of our series on working with Macrium Reflect, we look at scheduling full and incremental images as part of a regular backup cycle.&lt;/p&gt;&lt;p&gt;In the last two tutorials we created full and incremental backup images of drive C. We also saved the options we used as XML backup definition files. In this tutorial I’ll take you through the steps required to schedule these disk images in a backup cycle so that they run automatically. I’ll also show you how to utilize the disk space management options in Reflect so you never have to worry about running out of storage space your backup drive.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&lt;span style="font-size: 18px;"&gt;What’s a backup cycle?&lt;/span&gt;&lt;/strong&gt; &lt;/p&gt;&lt;p&gt;A good backup cycle is essential to optimize use of available storage space and to protect your computer from sudden failure as well as giving you the ability to recover historical data.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Example 1&lt;/strong&gt;&lt;/p&gt;&lt;ul&gt;    &lt;li&gt;A standard incremental back up routine could follow a seven-day cycle, starting on a Monday at 18.00.&lt;/li&gt;    &lt;li&gt;    The specified partition or disk would be fully imaged on Monday evening. &lt;/li&gt;    &lt;li&gt;    On Tuesday evening at 18.00 a scheduled task would run and backup any sectors on disk changed since the previous day’s backup.&lt;/li&gt;    &lt;li&gt;    The same procedure would then follow for Wednesday, Thursday, and Friday evenings. &lt;/li&gt;    &lt;li&gt;    At the beginning of the next week, the preceding Monday's image will be deleted along with all the increments (which are now invalid) and a new full image added to the destination directory.&lt;/li&gt;    &lt;li&gt;The cycle is then repeated.&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;br /&gt;This example is quickest to execute from Tuesday to Sunday and uses less storage on these day’s as only changes since the previous day are saved. There is however, an increased exposure on Tuesday, as at that point only one day’s backup can be restored. If you need to go back to the previous Friday, for example, then unfortunately this isn’t possible. &lt;/p&gt;&lt;p&gt;&lt;strong&gt;Example 2&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;Example 1 could be modified not to delete the previous full image but to delete the full image from the Monday before that. Therefore this would keep a minimum of 7 Days of data and a maximum of 14 Days (or 30 and 60 days for a thirty-day-cycle). &lt;/p&gt;&lt;p&gt;The obvious disadvantage of this method is that double the amount of disk storage is required. But, if the storage is available, then this is a more comprehensive solution.&lt;/p&gt;&lt;p&gt;We can use the previously created backup definition files for both the full and incremental images of drive C and implement the 7-day-cycle example above&lt;/p&gt;&lt;p&gt;OK, let’s begin by scheduling the full image to run on Mondays…&lt;/p&gt;&lt;ol&gt;    &lt;li&gt;&lt;strong&gt;Start Reflect, click the ‘XML Definitions’ tab, select the ‘C Full Image’ XML file &lt;/strong&gt;and &lt;strong&gt;then click the ‘Schedule’ button.&lt;br /&gt;    &lt;br /&gt;    &lt;/strong&gt;&lt;img alt="" src="http://www.macrium.com/webtutorial/image17.jpg" /&gt;&lt;/li&gt;    &lt;li&gt;The first wizard page shows the program, parameters and scheduled task name. Note that the program is ‘reflect.exe’ with your XML file name as a parameter. Leave the task name as defaulted and &lt;strong&gt;click ‘Next’&lt;/strong&gt;.&lt;br /&gt;    &lt;br /&gt;    &lt;img alt="" src="http://www.macrium.com/webtutorial/image18.jpg" /&gt;&lt;/li&gt;    &lt;li&gt;The next page allows you to choose the frequency of your backup task, &lt;strong&gt;select ‘Weekly’&lt;/strong&gt; and &lt;strong&gt;click ‘Next’&lt;/strong&gt;.&lt;br /&gt;    &lt;br /&gt;    &lt;img alt="" src="http://www.macrium.com/webtutorial/image19.jpg" /&gt;&lt;/li&gt;    &lt;li&gt;&lt;strong&gt;Select ‘Monday’ &lt;/strong&gt;on the next page, enter a time that you want you task to run and &lt;strong&gt;click ‘Next’&lt;/strong&gt;.&lt;br /&gt;    &lt;br /&gt;    &lt;img alt="" src="http://www.macrium.com/webtutorial/image20.jpg" /&gt;&lt;/li&gt;    &lt;li&gt;The final page shows a summary of your selections. &lt;strong&gt;Click ‘Finish’&lt;/strong&gt; to create your scheduled task.&lt;br /&gt;    &lt;br /&gt;    &lt;img alt="" src="http://www.macrium.com/webtutorial/image21.jpg" /&gt;&lt;/li&gt;    &lt;li&gt;Repeat this process for your incremental backup XML file, &lt;strong&gt;select ‘Weekly’ &lt;/strong&gt;as the frequency again but this time &lt;strong&gt;select ‘Tuesday’, ‘Wednesday’, ‘Thursday’ &lt;/strong&gt;and &lt;strong&gt;‘Friday’&lt;/strong&gt; as the days to run.&lt;br /&gt;    &lt;br /&gt;    &lt;em&gt;That’s it!&lt;/em&gt; Your full and incremental backup images of drive C are now scheduled to run. If you click &lt;br /&gt;    on the ‘Scheduled Backups’ tab you can see the schedules you’ve just created.  &lt;strong&gt;&lt;br /&gt;    &lt;br /&gt;    &lt;img alt="" src="http://www.macrium.com/webtutorial/image23.jpg" /&gt;&lt;br /&gt;    &lt;br /&gt;    Note:&lt;/strong&gt; Reflect actually uses the standard Windows task scheduler to run backup tasks.&lt;/li&gt;&lt;/ol&gt;&lt;p&gt;&lt;strong&gt;&lt;span style="font-size: 18px;"&gt;Managing Disk Space&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;These backups will now continuously run every weekday of every week. However, the drive that hosts your backup directory will soon run out of disk space. Fortunately we can automatically purge old backups to make room for the latest. We’ll delete all full backup image files in the backup directory older than 14 days.&lt;br /&gt;&lt;br /&gt;Here’s how…  &lt;/p&gt;&lt;ol&gt;    &lt;li&gt;    First &lt;strong&gt;Click the ‘XML Definition Files’ tab&lt;/strong&gt;, then &lt;strong&gt;select the ‘C Full Image.xml’ file &lt;/strong&gt;and finally &lt;strong&gt;click the ‘Edit’ button&lt;/strong&gt;&lt;br /&gt;    &lt;br /&gt;    &lt;img alt="" src="http://www.macrium.com/webtutorial/image24.jpg" /&gt;&lt;/li&gt;    &lt;li&gt;    Step through the Wizard to the final page and &lt;strong&gt;click the ‘Advanced’ button&lt;/strong&gt;. In the ‘Advanced Settings’ dialog &lt;strong&gt;select the ‘Disk Space Management’ tree node&lt;/strong&gt;. In the property dialog &lt;strong&gt;select ‘Enable…’, enter 14 in the edit box and click ‘OK’.&lt;br /&gt;    &lt;/strong&gt;&lt;img alt="" src="http://www.macrium.com/webtutorial/image25.jpg" /&gt;&lt;/li&gt;    &lt;li&gt;Finally &lt;strong&gt;Click ‘Finish’&lt;/strong&gt; on the wizard page.&lt;br /&gt;    &lt;br /&gt;    &lt;em&gt;We are done!&lt;/em&gt; Drive C is now automatically protected and you have retained a maximum of 14 days history. &lt;/li&gt;&lt;/ol&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;strong&gt;Notes: &lt;/strong&gt;&lt;/p&gt;&lt;ul&gt;    &lt;li&gt;The purge works by deleting backup files in the destination directory of the backup task. It is therefore important that you organize different backup types into their own directory structure if your purge requirements are different. E.g. you may want to keep 14 days history for images of drive C and 30 days history for drive E.&lt;br /&gt;      &lt;/li&gt;    &lt;li&gt;The current backup set (the one you are creating or incrementing) is never purged.  &lt;br /&gt;      &lt;/li&gt;    &lt;li&gt;The above example assumes that you want to retain a maximum of 2 weeks history. When a full backup is deleted, any linked incremental or differentials are also deleted. Therefore, the minimum number of day’s history kept is the purge number of days less the backup cycle period. So for a weekly cycle involving keeping at least two full backups you should set the purge days to 21. This will retain 3 full backups (and incrementals) for some of the time, reducing this to 2 when a purge is successful. &lt;br /&gt;      &lt;/li&gt;    &lt;li&gt;All file deletions are logged in the log window. Click the ‘Log’ tab and select dates in the calendar tree to display relevant logs.&lt;br /&gt;    If you are unfamiliar with backup routines then this has probably appeared quite a lengthy topic. However, the operations in Reflect have been nothing more than a few clicks. Once it is set up you don’t need to do anything else to keep your PC protected. &lt;/li&gt;&lt;/ul&gt;&lt;p&gt;In the next tutorial we’ll look at some of the things you can do with VBScript. This is an advanced topic, but you don’t need to know anything about VBScript to get started. So if you wondering, “But how do I do this….” Then read on.&lt;/p&gt;</description><pubDate>Thu, 10 Apr 2008 17:49:47 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>How to create an incremental disk image </title><link>http://www.macrium.com/KB/Goto50021.aspx</link><description>&lt;hr /&gt;&lt;p&gt;&lt;strong&gt;&lt;span style="font-size: 24px;"&gt;&lt;/span&gt;&lt;/strong&gt;In the last tutorial we created a full backup image of drive C and we stored the image file in a local directory for easy access. In this tutorial I’ll take you through the steps required to incrementally append to your drive C full image using the backup image wizard. After completing these steps you will have created an incremental image and saved your options as an XML definition file for easy re-running. &lt;/p&gt;&lt;p&gt;XML definitions provide a convenient way to store your backup options. Using an XML definition you can schedule a backup, generate a VBScript file for complex scenarios or simply create a desktop shortcut for instant running of your backup by clicking the shortcut icon.  &lt;br /&gt; &lt;br /&gt;   &lt;/p&gt;&lt;hr /&gt;&lt;p&gt;&lt;strong&gt;&lt;span style="font-size: 18px;"&gt;What’s an incremental image?&lt;/span&gt;&lt;/strong&gt; &lt;/p&gt;&lt;p&gt;The term ‘incremental’ in the context of data backup is not unique to Macrium Reflect. In fact this term has been used for years by many different backup software vendors.&lt;/p&gt;&lt;p&gt;When Reflect creates an incremental image it only backs up the parts of your disk that contain data that is different from the last backup you made. The advantage of this is that the resultant image file is both much smaller and much quicker to create than a full image. The only slight disadvantage is that when you restore your data, Reflect needs to access all the image files in the backup set to reconstruct the disk you want to restore. However, if the image files are stored in a local or network directory then this operation is automatic and completely transparent. &lt;/p&gt;&lt;p&gt;You may be wondering what the other backup type ‘differential’ is. A differential backup is similar to an incremental backup. However, rather than backing up the changes since the most recent backup, a differential backup will save changes made since the first/full backup. &lt;/p&gt;&lt;p&gt;Note: For this tutorial creating a differential or an incremental backup would be exactly the same! Both would save changes since the full backup as this is the only backup made so far.&lt;/p&gt;&lt;p&gt;In the last tutorial we stored our image file in a local directory so we can easily append an incremental image to this location.&lt;/p&gt;&lt;p&gt;OK, let’s begin…&lt;/p&gt;&lt;ol&gt;    &lt;li&gt;Start Reflect and &lt;strong&gt;take the option ‘Create a backup image…’&lt;/strong&gt; to start the backup wizard.&lt;br /&gt;    &lt;br /&gt;    &lt;div style="text-align: center;"&gt;&lt;img alt="" src="http://www.macrium.com/webtutorial/image10.jpg" /&gt;&lt;br /&gt;    &lt;/div&gt;    &lt;/li&gt;    &lt;li&gt;&lt;strong&gt;Click ‘Next’ &lt;/strong&gt;on the first introductory wizard page. On the second wizard page &lt;strong&gt;select ‘Incremental’&lt;/strong&gt; as the image type and &lt;strong&gt;click ‘Next’&lt;/strong&gt; &lt;br /&gt;    &lt;br /&gt;    &lt;div style="text-align: center;"&gt;&lt;img alt="" src="http://www.macrium.com/webtutorial/image11.jpg" /&gt;&lt;br /&gt;    &lt;/div&gt;    &lt;/li&gt;    &lt;li&gt;The next page allows you to choose the type of incremental image and the directory that contains the rest of the files in the backup set.&lt;br /&gt;    &lt;br /&gt;    For this example &lt;strong&gt;select ‘Append to the most recent image’ for the first option&lt;/strong&gt;. The directory list should already display ‘D:\Drive C Images’ if you followed the last tutorial. If it doesn’t or if your full image is not in the selected directory then &lt;strong&gt;click the drop down box, select ‘Browse for folder’&lt;/strong&gt; and choose the directory where your full image is stored. &lt;strong&gt;Click ‘Next’&lt;/strong&gt; to continue.&lt;br /&gt;    &lt;br /&gt;    &lt;div style="text-align: center;"&gt;&lt;img alt="" src="http://www.macrium.com/webtutorial/image12.jpg" /&gt;&lt;br /&gt;    &lt;/div&gt;    &lt;/li&gt;    &lt;li&gt;    The final page shows a summary of your selections. The ‘Advanced’ button allows you to configure password and disk space management options. For this example we’ll just leave them as the defaulted values and &lt;strong&gt;click ‘Finish’&lt;/strong&gt;.&lt;br /&gt;    &lt;br /&gt;    &lt;div style="text-align: center;"&gt;&lt;img alt="" src="http://www.macrium.com/webtutorial/image13.jpg" /&gt;&lt;br /&gt;    &lt;/div&gt;    &lt;/li&gt;    &lt;li&gt;    You now have the option to save this definition and / or run this incremental image now. Change the file name to &lt;strong&gt;‘C Incremental Image’&lt;/strong&gt;, leave both options checked and &lt;strong&gt;click ‘OK’&lt;/strong&gt;.&lt;br /&gt;    &lt;br /&gt;    &lt;div style="text-align: center;"&gt;&lt;img alt="" src="http://www.macrium.com/webtutorial/image14.jpg" /&gt;&lt;/div&gt;    &lt;/li&gt;&lt;/ol&gt;&lt;p&gt;&lt;br /&gt;&lt;br /&gt;&lt;em&gt;That’s it!&lt;/em&gt; Your incremental backup will now start and you have saved the definition of this backup as ‘C Incremental Image.xml’.  To re-run this incremental backup simply &lt;strong&gt;select the XML definition and click the ‘Execute’ button&lt;/strong&gt;.&lt;/p&gt;&lt;div style="text-align: center;"&gt;&lt;img alt="" src="http://www.macrium.com/webtutorial/image15.jpg" /&gt;&lt;br /&gt;&lt;/div&gt;&lt;p&gt;&lt;br /&gt;You can also create a desktop shortcut to run the backup by clicking the shortcut icon. Simply &lt;strong&gt;click the ‘Create Desktop Shortcut’ button&lt;/strong&gt; &lt;/p&gt;&lt;div style="text-align: center;"&gt;&lt;img alt="" src="http://www.macrium.com/webtutorial/image16.jpg" /&gt;&lt;br /&gt;&lt;/div&gt;&lt;p&gt;&lt;br /&gt;In the next tutorial I’ll show you how to schedule both the full and incremental images to run automatically and look at how the disk space management options in Reflect stop your backup disk becoming full.&lt;/p&gt;</description><pubDate>Thu, 03 Apr 2008 17:49:47 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>How to create a disk image</title><link>http://www.macrium.com/KB/Goto50039.aspx</link><description>&lt;hr /&gt;&lt;br /&gt;Creating an image of your hard disk is the best way to protect your data and operating system from disk failure or accidental deletion of critical system files. Fortunately, with Macrium Reflect this process is not only incredibly fast but also extremely easy.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Note:&lt;/strong&gt; Please see &lt;a href="http://www.macrium.com/KB/KnowledgebaseArticle50049.aspx" target="_blank" class="ApplyClass"&gt;here&lt;/a&gt;for considerations when creating an image of Windows 7 systems.&lt;br /&gt;&lt;br /&gt;Macrium Reflect can create file backups as well as disk images. However, for this tutorial I’ll take you through the steps required to create a full image of ‘Drive C’ using the backup image wizard. After completing these steps you will have created an image and saved your options as a XML definition file for easy re-running.&lt;br /&gt;&lt;br /&gt;XML definitions provide a convenient way to store your backup options. Using an XML definition you can schedule a backup, generate a VBScript file for complex scenarios or simply create a desktop shortcut for instant running of your backup by clicking the shortcut icon.   &lt;br /&gt;&lt;br /&gt;OK, let’s begin…&lt;br /&gt;&lt;br /&gt;&lt;ol&gt;    &lt;li&gt;Start Reflect and take the option ‘&lt;strong&gt;Create a backup image…&lt;/strong&gt;’ to start the backup wizard.&lt;br /&gt;    &lt;br /&gt;    &lt;div style="text-align: center;"&gt;&lt;img alt="" src="http://www.macrium.com/webtutorial/image1.jpg" /&gt;&lt;br /&gt;      &lt;/div&gt;    &lt;/li&gt;    &lt;li&gt;    &lt;strong&gt;Click ‘Next’&lt;/strong&gt; on the first introductory wizard page. On the second wizard page&lt;strong&gt; select ‘Full’&lt;/strong&gt; as the image type and &lt;strong&gt;click ‘Next’&lt;br /&gt;    &lt;br /&gt;    &lt;/strong&gt;    &lt;div style="text-align: center;"&gt;&lt;img alt="" src="http://www.macrium.com/webtutorial/image2.jpg" /&gt;&lt;br /&gt;    &lt;/div&gt;    &lt;em&gt;&lt;br /&gt;    I’ll cover the other options, ‘incremental’ and ‘differential,’ in a future tutorial.&lt;br /&gt;    &lt;br /&gt;    &lt;/em&gt;&lt;/li&gt;    &lt;li&gt;    The next page shows your disk partitions (drives). You can save multiple partitions from multiple disks in the same image file but for this example &lt;strong&gt;click drive (C:)&lt;/strong&gt; in your list then &lt;strong&gt;click ‘Next’&lt;br /&gt;    &lt;br /&gt;    &lt;/strong&gt;    &lt;div style="text-align: center;"&gt;&lt;img alt="" src="http://www.macrium.com/webtutorial/image3.jpg" /&gt;&lt;br /&gt;      &lt;/div&gt;    &lt;/li&gt;    &lt;li&gt;    You now need to select where you want to store your image file.&lt;br /&gt;    &lt;br /&gt;    Reflect can store images on one or many DVDs but it is far better to choose a local or network drive. By using a local or network drive you can easily access your image files for restoring and you can browse your images in Windows explorer. This isn’t possible if the image file spans more than one DVD.&lt;br /&gt;    &lt;br /&gt;    It’s best to create a new directory for your images. &lt;strong&gt;Click the dropdown list for ‘Local Hard Disk’ and select ‘Browse for folder’&lt;/strong&gt;. This opens a standard windows directory selection dialog. Navigate to the drive where you want to store the image file and &lt;strong&gt;click the ‘Make New Folder’ button&lt;/strong&gt;. Name this folder something meaningful, such as ‘&lt;strong&gt;Drive C Images&lt;/strong&gt;’ and &lt;strong&gt;click ‘OK’&lt;/strong&gt; in the dialog to select it.&lt;br /&gt;    &lt;br /&gt;    &lt;div style="text-align: center;"&gt;&lt;img alt="" src="http://www.macrium.com/webtutorial/image4.jpg" /&gt;&lt;br /&gt;    &lt;/div&gt;    &lt;br /&gt;    Leave the ‘Use image ID as the file name’ option checked and &lt;strong&gt;click ‘Next’&lt;/strong&gt;.&lt;em&gt;&lt;br /&gt;    &lt;br /&gt;    An image ID is used to identify a backup set. A backup set comprises of a full backup and all subsequent Incremental and/or differential backups. It is a unique 16 byte Hex value (128 bit) and guarantees that you won’t have any file name conflicts when creating multiple backups in the same &lt;br /&gt;    &lt;br /&gt;    &lt;/em&gt;&lt;/li&gt;    &lt;li&gt;    The final page shows a summary of your selections. The ‘Advanced’ button allows you to configure compression level, password / encryption and many other options. For this example we’ll just leave them as the defaulted values and&lt;strong&gt; click ‘Finish’&lt;br /&gt;    &lt;/strong&gt;&lt;br /&gt;    &lt;div style="text-align: center;"&gt;&lt;img alt="" src="http://www.macrium.com/webtutorial/image5.jpg" /&gt;&lt;br /&gt;    &lt;br /&gt;    &lt;/div&gt;    &lt;/li&gt;    &lt;li&gt;    You now have the option to save this definition and / or run this image now. Change the file name to &lt;strong&gt;‘C Full Image’&lt;/strong&gt;, leave both options checked and&lt;strong&gt; click ‘OK’&lt;/strong&gt;.&lt;br /&gt;    &lt;br /&gt;    &lt;div style="text-align: center;"&gt;&lt;img alt="" src="http://www.macrium.com/webtutorial/image6.jpg" /&gt;&lt;br /&gt;    &lt;/div&gt;    &lt;em&gt;&lt;br /&gt;    That’s it!&lt;/em&gt; Your backup will now start and you have saved the definition of this backup as ‘C Full Image.xml’.&lt;br /&gt;    &lt;br /&gt;    To re-run this backup simply&lt;strong&gt; select the XML definition&lt;/strong&gt; and &lt;strong&gt;click the ‘Execute’ button.&lt;/strong&gt;&lt;br /&gt;    &lt;br /&gt;    &lt;div style="text-align: center;"&gt;&lt;img alt="" src="http://www.macrium.com/webtutorial/image7.jpg" /&gt;&lt;br /&gt;    &lt;/div&gt;    &lt;br /&gt;    You can also create a desktop shortcut to run the backup by clicking the shortcut icon. Simply &lt;strong&gt;click the ‘Create Desktop Shortcut’ button&lt;/strong&gt;~&lt;br /&gt;     &lt;br /&gt;    &lt;br /&gt;    &lt;div style="text-align: center;"&gt;&lt;img alt="" src="http://www.macrium.com/webtutorial/image8.jpg" /&gt;&lt;br /&gt;     &lt;br /&gt;    &lt;/div&gt;    &lt;/li&gt;&lt;/ol&gt;In the next tutorial we’ll create an incremental image of this full image and schedule these to run automatically to keep your PC protected.&lt;br /&gt;&lt;br /&gt;</description><pubDate>Tue, 25 Mar 2008 17:49:47 GMT</pubDate><dc:creator>Administrator</dc:creator></item></channel></rss>