Do you want BuboFlash to help you learning these things? Or do you want to add or correct something? Click here to log in or create user.



Question
How to moves all files associated with a virtual machine test VM to different locations under D:\TestVM ?
Answer

PS C:\> Move-VMStorage "Test VM"

-VirtualMachinePath D:\TestVM\Config

-SnapshotFilePath D:\TestVM\Snapshots

-SmartPagingFilePath D:\TestVM\SmartPaging

-VHDs @(@{"SourceFilePath" = "C:\TestVM\Disk1.VHDX";

"DestinationFilePath" = "D:\TestVM\Disks\Disk1.VHDX"},

@{"SourceFilePath" = "C:\TestVM\Disk2.VHDX";

"DestinationFilePath" = "D:\TestVM\Disks\Disk2.VHDX"})


Question
How to moves all files associated with a virtual machine test VM to different locations under D:\TestVM ?
Answer
?

Question
How to moves all files associated with a virtual machine test VM to different locations under D:\TestVM ?
Answer

PS C:\> Move-VMStorage "Test VM"

-VirtualMachinePath D:\TestVM\Config

-SnapshotFilePath D:\TestVM\Snapshots

-SmartPagingFilePath D:\TestVM\SmartPaging

-VHDs @(@{"SourceFilePath" = "C:\TestVM\Disk1.VHDX";

"DestinationFilePath" = "D:\TestVM\Disks\Disk1.VHDX"},

@{"SourceFilePath" = "C:\TestVM\Disk2.VHDX";

"DestinationFilePath" = "D:\TestVM\Disks\Disk2.VHDX"})

If you want to change selection, open document below and click on "Move attachment"

Move-VMStorage
e of a virtual machine. Examples Example 1 PS C:\> Move-VMStorage "Test VM" -DestinationStoragePath D:\TestVM Moves all files associated with a virtual machine test VM to D:\TestVM Example 2 <span>PS C:\> Move-VMStorage "Test VM" -VirtualMachinePath D:\TestVM\Config -SnapshotFilePath D:\TestVM\Snapshots -SmartPagingFilePath D:\TestVM\SmartPaging -VHDs @(@{"SourceFilePath" = "C:\TestVM\Disk1.VHDX"; "DestinationFilePath" = "D:\TestVM\Disks\Disk1.VHDX"}, @{"SourceFilePath" = "C:\TestVM\Disk2.VHDX"; "DestinationFilePath" = "D:\TestVM\Disks\Disk2.VHDX"}) Moves all files associated with a virtual machine test VM to different locations under D:\TestVM. Required Parameters -DestinationStoragePath Specifies a destination storage path to whi

Summary

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

Details

No repetitions


Discussion

Do you want to join discussion? Click here to log in or create user.