Difference Between Hyper-V Saved State and a Snapshot
When working with Microsoft Hyper-V, it is helpful to understand the difference between the Saved State and a Snapshot. Here is a brief explanation of both.
Snapshot
A snapshot can be taken whether the virtual machine (VM) is running or not. It is a point in time of the state of a VM. You can revert back to a previous point in time whenever there is a need. For example, if you plan to install a service pack, you can take a snapshot before you install the service pack and if things go wrong, you can revert to the point in time before you installed the service pack. It is similar to the System Restore concept in Microsoft operating systems. A snapshot consists of three components:
Copyright ©2011 Zubair Alexander. All rights reserved.
- A single xml file for the VM configuration. This includes all the settings that you configured for the VM, such as memory, number of processors, description of the VM, etc.
- A memory save state file.
- A difference disk, which is a file that ends with the extension .avhd. There will be a separate .avhd file for each snapshot.
Copyright ©2011 Zubair Alexander. All rights reserved.
Leave a Comment