Hi Experts ,
I have multiple misconfigured VMs. Each VMs have two vmdks one located on ESXi local datastore(50Gb) and other vmdk located on shared datastore (300gb) coming from storage.
I want to use a powercli script only to do sVmotion for first vmdk which is located on ESXi local disk. Is it possible to do SVmotion for only the first vmdk , because i was testing this script below it is relocating whole VM ( that is both the vmdks) to the new datastores which is not desirable.
Get-Datastore mt-111_local* |get-vm marl-test-vm-tooltest-1 | move-vm -datastore DevTestFarmShared_CX4-xxx-1*
mt-111_local* : ESXi local disk name (source)
DevTestFarmShared_CX4-xxx-1* : shared datastore from storage (target)
Please let me know if it is possible to move only the first vmdk.
Thanks in Advance.