Linked: eagerZeroedThick powershell script
I found this great Powershell script that convert virtual disk files to eagered zeroed. Awesome script! I had to make some changes to make it work in my environment. function Set-EagerZeroThick{ param($vcName, $vmName, $hdName) # Find ESX host for VM $vmImpl = Get-VM $vmName Write-Host $vmImpl if($vmImpl.PowerState -ne “PoweredOff”){ Write-Host “Guest must be powered off [...]