bhyve bhyve guest windows10 can not type capital letters

When I try to type capital letters on bhyve guest windows10 I got messages "Unhandled ps2 keyboard keysym 0xffe5",
and Only lowercase letters are printed.

My script start windows10 is as follows:
Code:
#!/bin/sh
bhyve -c 1 -m 2G -w -H 
-s 0,hostbridge \
-s 2,ahci-hd,/dev/zvol/zroot/win10disk1 \
-s 3,virtio-net,tap2 \
-s 29,fbuf,tcp=0.0.0.0:5900,w=1280,h=720,wait \
-s 30,xhci,tablet \
-s 31,lpc \
-l com1,stdio \
-l bootrom,/usr/local/share/uefi-firmware/BHYVE_UEFI.fd \
guestwin10
 
Back
Top