HOTSPOT
You have a Hyper-V host named Server1 that runs Windows Server 2012 R2. Server1 hosts 40 virtual
machines that run Windows Server 2008 R2. The virtual machines connect to a private virtual switch.
You have a file that you want to copy to all of the virtual machines.
You need to identify to which servers you can copy files by using the Copy-VmFile cmdlet.
What command should you run? To answer, select the appropriate options in the answer area.

https://technet.microsoft.com/en-au/library/dn798297.aspx#BKMK_KVP
The guest service allows the Hyper-V administrator to copy files to a running virtual machine without using a network connection. Beforehand the only way to copy files to the virtual machine was for both the virtual machine and the host be connected to same network and then either use file services to copy file or to create a remote desktop session to the virtual machine and copy files via RDS session.
0
0
Get-VMHost and Guest service interface
0
0
Get-VMHost and Guest Service Interface.
The option Get-VMHost targets the physical machine, identified by “-ComputerName Server1”.
In regards to the second choice, Guest Service Interface allows the ability to “Copy” files across, specifically VM Files, even with Limited Connection.
0
0
Get-VM
https://technet.microsoft.com/en-us/library/hh848479.aspx
Example 2 provides a similar use of Get-VM
0
0
I agree. We need to take the VMs not the host.
0
0
Agree with G M and Ivan. You are getting all the VMs on Server1.
0
0
Answer is correct
PS C:\Users\administrator.HOME> Get-VMHost -ComputerName william
Name LogicalProcessorCount MemoryCapacity(M) VirtualMachineMigrationEnabled
—- ——————— —————– ——————————
william 4 8102.73046875 True
PS C:\Users\administrator.HOME> Get-VM -ComputerName william
Name State CPUUsage(%) MemoryAssigned(M) Uptime Status
—- —– ———– —————– —— ——
2012Core Off 0 0 00:00:00 Operating normally
ADMT Off 0 0 00:00:00 Operating normally
DFS-01 Off 0 0 00:00:00 Operating normally
DirectAccess Running 0 2048 2.01:31:01 Operating normally
Home-DC3 Running 0 894 2.01:31:01 Operating normally
NLB-01 Off 0 0 00:00:00 Operating normally
RDS-01 Off 0 0 00:00:00 Operating normally
RDS-Gateway Off 0 0 00:00:00 Operating normally
RRAS-02 Off 0 0 00:00:00 Operating normally
Server2016 Off 0 0 00:00:00 Operating normally
Server2016DC Off 0 0 00:00:00 Operating normally
0
0
PS C:\Users\administrator.HOME> Get-VM -ComputerName william | Get-VMIntegrationService -Name “Guest Service Interface”
VMName Name Enabled PrimaryStatusDescription SecondaryStatusDescription
—— —- ——- ———————— ————————–
2012Core Guest Service Interface False
ADMT Guest Service Interface False
DFS-01 Guest Service Interface False
DirectAccess Guest Service Interface False OK
Home-DC3 Guest Service Interface False OK
NLB-01 Guest Service Interface False
RDS-01 Guest Service Interface False
RDS-Gateway Guest Service Interface False
RRAS-02 Guest Service Interface False
Server2016 Guest Service Interface False
Server2016DC Guest Service Interface False
0
0