You can elect to backup the Windows System State and critical volume data using either the full Windows Server 2008 Backup MMC snap-in or the new wbadmin command-line tool. In the background, Windows utilizes Volume Shadow Copy Service (VSS) to carry out the task of making point-in-time snapshot backup of the system.
Regardless of which method you use, the backup will be captured entirely in an .vhd virtual machine file format. This is the same file format used in Microsoft’s virtualization solutions - Virtual PC, Virtual Server and the upcoming Hyper-V.
Windows System State in Windows Server 2008 has grown dramatically in size. Depending on installed server roles and features, this figure can easily exceed 50′000 files! A full Windows System State backup can take up to one hour or more to complete to a direct attach storage (disk volume). Subsequent backup time should reduce if incremental or differential backup type is taken.
Let us take a look at how to use wbadmin to make a Windows System State backup. To begin, you need to have a separate disk volume as a backup destination. Otherwise, the following error will appear:
C:\Users\Administrator>wbadmin start systemstatebackup -backuptarget:c:
wbadmin 1.0 - Backup command-line tool
(C) Copyright 2004 Microsoft Corp.
Starting System State Backup [5/26/2008 12:28 AM]
Retrieving volume information…
This would backup the system state from volume(s) Local Disk(C:) to c:.
Do you want to start the backup operation?
[Y] Yes [N] No y
ERROR - The location for backup is a critical volume.
Notice that the wbadmin syntax is quite straightforward. Once you have met the other prerequisites as described in my previous post*, simply let the backup progress run to completion. Ensure that you have sufficient disk space on the target volume because the .vhd file itself can use up to 6GB or more disk asset. In addition to that, you will also find a backup folder structure and a series of XML files created that describe the backup(s) made (additional storage space required).

The entire backup progress is shown below:
C:\Users\Administrator>wbadmin start systemstatebackup -backuptarget:e:
wbadmin 1.0 - Backup command-line tool
(C) Copyright 2004 Microsoft Corp.
Starting System State Backup [5/26/2008 12:34 AM]
Retrieving volume information…
This would backup the system state from volume(s) Local Disk(C:) to e:.
Do you want to start the backup operation?
[Y] Yes [N] No y
Creating the shadow copy of volumes requested for backup.
Found (0) files
Found (3337) files
Found (7115) files
Found (10698) files
Found (29495) files
Found (44795) files
Found (44795) files
Found (44795) files
Found (44795) files
Found (44795) files
Found (44795) files
Found (44795) files
Found (44795) files
Found (44795) files
Search for system state files complete
Starting backup of files
Overall progress - 0% (Currently backing up files reported by ‘System Writer’)
Overall progress - 0% (Currently backing up files reported by ‘System Writer’)
Overall progress - 0% (Currently backing up files reported by ‘System Writer’)
Overall progress - 0% (Currently backing up files reported by ‘System Writer’)
Overall progress - 0% (Currently backing up files reported by ‘System Writer’)
Overall progress - 1% (Currently backing up files reported by ‘System Writer’)
Overall progress - 1% (Currently backing up files reported by ‘System Writer’)
Overall progress - 2% (Currently backing up files reported by ‘System Writer’)
Overall progress - 2% (Currently backing up files reported by ‘System Writer’)
Overall progress - 2% (Currently backing up files reported by ‘System Writer’)
Overall progress - 3% (Currently backing up files reported by ‘System Writer’)
Overall progress - 3% (Currently backing up files reported by ‘System Writer’)
.
.
.
Overall progress - 98% (Currently backing up files reported by ‘System Writer’)
Overall progress - 98% (Currently backing up files reported by ‘System Writer’)
Overall progress - 98% (Currently backing up files reported by ‘System Writer’)
Overall progress - 98% (Currently backing up files reported by ‘System Writer’)
Backup of files reported by ‘System Writer’ completed
Overall progress - 98% (Currently backing up files reported by ‘WMI Writer’)
Backup of files reported by ‘WMI Writer’ completed
Overall progress - 99% (Currently backing up files reported by ‘Registry Writer’)
Overall progress - 99% (Currently backing up files reported by ‘Registry Writer’)
Summary of backup:
——————
Backup of system state completed successfully [5/26/2008 1:37 AM]
Log of files successfully backed up
‘C:\Windows\Logs\WindowsServerBackup\SystemStateBackup 26-05-2008 00-34-54.log’
* search for Windows Server 2008 Backup Features dated 26 May 2008
Technorati tags: Windows Server 2008, Security