Automatically press any key when booting Windows install. Close #231
This commit is contained in:
parent
fd105ab8f5
commit
74e72404b4
7
quickemu
7
quickemu
|
@ -1752,8 +1752,13 @@ if [ ${SHORTCUT} -eq 1 ]; then
|
||||||
exit
|
exit
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ $VM_UP -eq 0 ]; then
|
if [ ${VM_UP} -eq 0 ]; then
|
||||||
vm_boot
|
vm_boot
|
||||||
|
# If the VM being started is an uninstalled Windows VM then auto-skip the press-any key prompt.
|
||||||
|
if [ -n "${iso}" ] && [ "${guest_os}" == "windows" ]; then
|
||||||
|
sleep 3.5
|
||||||
|
monitor_send_cmd "sendkey ret"
|
||||||
|
fi
|
||||||
start_viewer
|
start_viewer
|
||||||
else
|
else
|
||||||
parse_ports_from_file
|
parse_ports_from_file
|
||||||
|
|
Loading…
Reference in New Issue