You have a Hyper-V host named Server1 that runs Windows Server 2016. Server1 hosts a virtual machine
named VM1. VM1 is in a workgroup. VM1 is currently in a running state.
You need to create 10 copies of VM1 on Server1 in the least amount of time possible.
Which cmdlets should you use?

A.
Stop-VM, and then Import-VM
B.
Export-VM, and then Import-VM
C.
Checkpoint-VM, and then New-VM
D.
Copy-VMFile, and then New-VM
Explanation:
References: http://www.thegeekstuff.com/2014/03/import-export-vm-hyper-v/
Answer B
5
0
B
1
0
A – wrong. To do Import you have to Export first. As it clearly states in description of Path parameter there: https://docs.microsoft.com/en-us/powershell/module/hyper-v/import-vm?view=win10-ps
B – correct. You can export a running one. In time of Import time of import new SID can be provided and files copied: https://docs.microsoft.com/en-us/windows-server/virtualization/hyper-v/deploy/export-and-import-virtual-machines#export-a-virtual-machine
1
0
The question is “Create 10 copies of VM1 on Server1 in the least amount of time possible. Which cmdlets should you use?” So thats at least 2 cmdlets.
C and D don’t seem to match with any other answer.
I guess that leaves A and B.
0
0
It’s B.To import a vm you must export first
1
0
Answer B.
You dont need stop the VM to export him.
its possible to export a Vm in running state.
More:
https://blogs.msdn.microsoft.com/virtual_pc_guy/2014/02/03/exporting-a-running-virtual-machine/
https://blog.workinghardinit.work/2016/06/16/live-export-a-running-virtual-machine-or-a-checkpoint/
0
0
B OK
You can do this on a virtual machine that is in either a started or stopped state.
0
0