Hi everyone,
We are trying to use guest-exec[0] command of qemu-guest-agent. However, discovered that whatever command we try to run, it ends up with the following error on the host side:
> error: Guest agent is not responding: Guest agent not available for now
An example of what we run on the host side:
> virsh qemu-agent-command --domain armin_1 '{ "execute": "guest-exec", "arguments": { "path": "C:/Windows/System32/ipconfig.exe", "capture-output": false } }'
Because Windows was complaining about `gspawn-win64-helper-console.exe` whenever we ran a command on host, we tried to run it directly from cli and it failed on the following assertion:
> g_assert (argc >= ARG_COUNT); // [1]
For testing purposes, we started giving it more and more argument to see when it will be happy which turned out to be 8 or 9 arguments.
This picture[2] might be a bit more useful as it includes the output of `qemu-ga` in verbose mode.
Any idea how we can solve it and/or what we are doing wrong?
Thanks in advance.