Hi Guys, Sometimes you want to delete checkpoint but there is no option like in the screenshot bellow. You can, of course, shut down VM and manually merge snapshots. I do not recommend it. However, I found out that you can just choose a snapshot which you want to delete…
windows server
Hi Guys, Today I had to extend space on the LeftHand storage for old Windows 2008R2. On end I got error The parameter is incorrect” Operating system doesn’t see correctly available space. To solve it I used diskpart. diskpart list volume select Volume 3 extend filesystem I hope that this…
We are preparing for the migration from Hyper-V to VMware. I am collecting all information before migration. One of the tasks was to collect all memory assigned to all VMs. Get-VM -ComputerName (Get-ClusterNode -Cluster CLUSTER_NAME) | Select-Object Name, DynamicMemoryEnabled, MemoryAssigned, MemoryMinimum, ProcessorCount, Path
We are preparing for the migration from Hyper-V to VMware. I am collecting all information before migration. One of the tasks was to collect all the information about network cards connected to the VMs on the cluster. This is how I did it. Get-VM -ComputerName (Get-ClusterNode -Cluster CLUSTER_NAME) | Get-VMNetworkAdapter…
We are preparing for the migration from Hyper-V to VMware. I am collecting all information before migration. One of the tasks was to collect all the VHDs information and this is how I did it. Get-VM -ComputerName (Get-ClusterNode) | ForEach-Object {Get-VHD -ComputerName $_.ComputerName -VMId $_.VMId} | Select -Property Path, VhdFormat,VhdType,@{label=’Size(GB)’;expression={$_.filesize/1gb…