"Gene E. Bloch" <> wrote in message
news:hm4j7c$dnq$...
> On 2/22/10, Seth posted:
>
>> For whole drive backup with incremental updates you can also use
>> ImageX.EXE which is free from Microsoft. Has to be done outside of
>> Windows, but it's free.
>
>> - Boot to PE
>> - For whole system backup (initial backup) imagex /capture C:\
>> D:\backup.wim "My backup".
>> - Capture differences since last backup imagex /append C:\ D:\backup.wim
>> "Changes"
>
>> The "capture" command captures an entire drive.
>
>> The "append" command captures an entire drive, but rather than making a
>> new file it appends it to an existing file, but only different files.
>> Files that already exist in the image and are the same as the current
>> system aren't re-written, just uses pointers.
>
>> This indexing is how they have multiple versions of the OS on a single
>> DVD but only 1 image file. Each version is an index within the image and
>> the only files contained within each index (other than the first) is just
>> what is different form the first. All files that are common only exist
>> in the 1st index.
>
>
>> To restore...
>
>> See what the latest "index" number is (index gets incremented with each
>> append)
>> - imagex /info will display the information about the various images
>> within the WIM file
>> - prepare drive (clean it, make partition, mark it active, assign a drive
>> letter)
>> - Imagex /apply d:\backup.wim 4 C:\ (assuming latest index is 4)
>
>> If you need to retrieve/delete/modify files within the image manually...
>> - mkdir C:\MNT
>> - imagex /mountrw d:\backup.wim 4 C:\MNT (assuming index number is 4)
>
>> Now you can browse the contents of the image by going to C:\MNT.
>
>> When done, to commit changes...
>> - imagex /unmount /commit C:\MNT
>
> Never heard of that - thanks for the info and tutorial.
>
> Time to do a bit of research...
No problem.
A little extra, probably not needed info...
When doing a "non-destructive, clean build" (as in not formatting the drive,
old OS and programs stored in C:\WINDOWS.OLD) what Panther (Panther is the
name of the setup program introduced with Vista and part of why they had to
move the boot disk to WinPE) does is create WINDOWS.OLD, moves the top level
folders to be saved (which is why it happens so fast) and then does the
IMAGEX /APPLY right onto the non-reformatted drive. Other folders that may
be in the root of C: (like say a \DELL\DRIVERS folder) remain untouched as
the ImageX process runs file by file. Unlike say GHOST and other that do a
full partition or disk load.
MS was severely lacking in imaging technology for a long time. SYSPREP to
prepare a machine for imaging has been around since Windows98 and it's only
just recently with Vista that they finally included one in their deployment
tools.
Here's the full list of command line options.
http://technet.microsoft.com/en-us/l...8WS.10%29.aspx
Also, for those who need a little help with CLI, there is a GUI frontend
written by a 3rd party called GImageX.
ImageX is installed automatically as part of the WAIK.