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
March 2020
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…
Hi Guys,Currently, I am working on deploying LAPS to our environment. All servers are done but workstations are more complicated because of the different policy during the time which were applied to them. Some of them have enabled default administrator some of them have disabled and added non-standard local administrator…
Hi Guys, Today I had to create a template for our remote session servers. Unfortunately, the System Center Virtual Machine Manager was greyed out. Solution: VM has to be created in VMM. After option became available I was able to run Create Template. But it failed, I tried manually without…