From 317212a1a54094af8c1fc7892500f985b094a470 Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Tue, 12 Dec 2023 03:04:06 +0100 Subject: [PATCH] Install spice agent on windows --- profiles/KVM/Windows/Install.ps1 | 1 + 1 file changed, 1 insertion(+) diff --git a/profiles/KVM/Windows/Install.ps1 b/profiles/KVM/Windows/Install.ps1 index b6a69b26..cd50c6c2 100644 --- a/profiles/KVM/Windows/Install.ps1 +++ b/profiles/KVM/Windows/Install.ps1 @@ -12,6 +12,7 @@ function Install-PortValhallaDrivers { ) choco install -y --params "'ALLUSERS=1'" qemu-guest-agent; + choco install -y spice-agent; } . "$PSScriptRoot/../../Generic/Windows/Install.ps1";