John_yang's Posts

Get-VM | `   Get-View | `   ForEach-Object {     $vmxfile = $_.Config.Files.VmPathName     $dsname = $vmxfile.split(" ")[0]     $ds_name = $dsname.Substring(1,$dsname.Length-2)     $ds = G... See more...
Get-VM | `   Get-View | `   ForEach-Object {     $vmxfile = $_.Config.Files.VmPathName     $dsname = $vmxfile.split(" ")[0]     $ds_name = $dsname.Substring(1,$dsname.Length-2)     $ds = Get-Datastore -Name $ds_name     New-PSDrive -Name ds -PSProvider VimDatastore -Root '/' -Location $ds     Copy-DatastoreItem -Item "ds:\$($vmxfile.split(']')[1].TrimStart(' '))" -Destination $Destination      Remove-PSDrive -Name ds   } verified on vsphere 6.7 u2 and powercli 11
I have met this issue too, my VCSA version is 6.7.0.14000, build number 9451876. The VCSA server DB size is smaller then the backup job will easy to finished.