Just added the first Linux VM (Debian 11) to Hyper-V Server Core 2016. An error is raised while exporting VM with
Get-VM ... | Export-VM -CaptureLiveState CaptureDataConsistentState ...
The message mention an issue while creating Production Checkpoint because of VSS integration guest error 0x80004005. From what I understand hv_vss_daemon is running in the guest
root@...:~# ps -ef | grep hv
root 99 2 0 13:24 ? 00:00:00 [hv_vmbus_con]
root 101 2 0 13:24 ? 00:00:00 [hv_pri_chan]
root 102 2 0 13:24 ? 00:00:00 [hv_sub_chan]
root 218 2 0 13:24 ? 00:00:00 [hv_balloon]
root 245 1 0 13:24 ? 00:00:00 /usr/sbin/hv_kvp_daemon -n
root 397 1 0 13:24 ? 00:00:00 /usr/sbin/hv_fcopy_daemon -n
root 398 1 0 13:24 ? 00:00:00 /usr/sbin/hv_vss_daemon -n
root 1927 1851 0 13:26 pts/0 00:00:00 grep hv
The only possible issue I can see in the host is
[...]: PS ...> get-vm --- | Get-VMIntegrationService |? Name -like *shadow* | fl *
VMCheckpointId : 00000000-0000-0000-0000-000000000000
VMCheckpointName :
Enabled : True
OperationalStatus : {Ok, ProtocolMismatch}
PrimaryOperationalStatus : Ok
PrimaryStatusDescription : OK
SecondaryOperationalStatus : ProtocolMismatch
Any way to solve without reverting to normal checkpoint?