‘Storage Migration’ is a very handy function in SCVMM 2008 R2. With this tool, you are able to move the VM storage (configuration file and VHD file) from one place to the other with minimum downtime (less than 1 minute). This diagram illustrates how the storage migration works. This function is simple to use, just … Continue reading SCVMM 2008 R2 – Storage Migration
Tag: Hyper-V
Microsoft Virtual Machine Bus Network Adapter Is Hidden
I restored a Hyper-V virtual machine by creating a new VM and use the existing VHD file. After the server booted up, I logon into it and tried to change the IP address to the original one. A warning popped up saying like ‘microsoft virtual machine bus network adapter is hidden from the network connection … Continue reading Microsoft Virtual Machine Bus Network Adapter Is Hidden
20 Tips on Dynamic Memory
Dynamic Memory Tip#1: Dynamic Memory is not supported for Windows XP guests Dynamic Memory Tip#2: Only Enterprise and Ultimate editions of Windows 7 and Vista are supported guests. Dynamic Memory Tip#3: If you want demo DM quickly, just set the MSPaint image properties to the maximum size. Dynamic Memory Tip#4: DM only responds to actual … Continue reading 20 Tips on Dynamic Memory
PowerShell: Hyper-V Dynamic Memory Settings
Some great PS scripts about Hyper-V Dynamic Memory Settings can be found at the following link. http://social.technet.microsoft.com/wiki/contents/articles/hyper-v-how-to-set-dynamic-memory-using-powershell.aspx
PowerShell: List the Hyper-V VM VHD Location
The following PS script is to query the VHD location of each VM running on the hosts listed in the C:\scripts\Hyperv_Hosts.txt file. cls cd "c:\Scripts" $HyperVParents = Get-Content Hyperv_Hosts.txt Foreach ($HyperVParent in $HyperVParents) { $VMManagementService = Get-WmiObject -class "Msvm_VirtualSystemManagementService" -namespace "root\virtualization" -ComputerName $HyperVParent $VMs = Get-WmiObject -Namespace "root\virtualization" -ComputerName $HyperVParent -Query "Select * From Msvm_ComputerSystem … Continue reading PowerShell: List the Hyper-V VM VHD Location