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…
Articles by phi3nix
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…
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…