in this case both are the same.
the virtios are qxl which are spice
oh btw for install drivers i jsut made a little batch script.
what it does - it goes in each subdir looks for the driver file and install it,
but you need to put it in a flat structure like
-<dir>qxl
-<dir>driverstorage
-<dir>driverwhatever
-<dir>
-<dir>
driverinstall.bat
oh and it automatic elevates itself into admin
Code:
@echo off
if _%1_==_payload_ goto :payload
:getadmin
echo %~nx0: elevating self
set vbs=%temp%\getadmin.vbs
echo Set UAC = CreateObject^("Shell.Application"^) >> "%vbs%"
echo UAC.ShellExecute "%~s0", "payload %~sdp0 %*", "", "runas", 1 >> "%vbs%"
"%temp%\getadmin.vbs"
del "%temp%\getadmin.vbs"
goto :eof
:payload
echo %~nx0: running payload with parameters:
echo %*
echo ---------------------------------------------------
cd /d %2
shift
shift
ECHO Checking dir %CD% recursively for drivers.
pause
FOR /F "tokens=*" %%D IN ('DIR /B /AD /S %CD%') DO PNPUTIL -a "%%D\*.inf" 2>&1
echo Install Qemu Guest Tools
pause
echo going for reboot
pause
shutdown /r /D: p:00:00
goto :eof